This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Anthony Sottile
Recipients Anthony Sottile
Date 2020-04-28.22:48:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588114083.65.0.758237100014.issue40430@roundup.psfhosted.org>
In-reply-to
Content
unclear if this is intentional or not, I noticed this while seeing that `ast.Subscript.slice` is no longer `Index` / `Slice` / `ExtSlice`

# python3.8

>>> isinstance(ast.Slice(), ast.slice)
True

# python3.9a6

>>> isinstance(ast.Slice(), ast.slice)
False
History
Date User Action Args
2020-04-28 22:48:03Anthony Sottilesetrecipients: + Anthony Sottile
2020-04-28 22:48:03Anthony Sottilesetmessageid: <1588114083.65.0.758237100014.issue40430@roundup.psfhosted.org>
2020-04-28 22:48:03Anthony Sottilelinkissue40430 messages
2020-04-28 22:48:03Anthony Sottilecreate