[issue44538] ast.Slice 3.9.6 documentation bug

2021-06-30 Thread Tim
Tim added the comment: I was using 3.8. I followed the same steps on 3.9 and confirmed it worked - closing now. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue44538] ast.Slice 3.9.6 documentation bug

2021-06-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What Python version did you tried? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python

[issue44538] ast.Slice 3.9.6 documentation bug

2021-06-29 Thread Tim
New submission from Tim : Based off the ast 3.9.6 documentation (https://docs.python.org/3/library/ast.html), we would expect `Slice` to inherit from `expr`. However, looking at `ast.Slice.__mro__` produces the following output: `(, , , )`. It appears that instead of inheriting from `expr`,