Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
improvement: add new Python 3.13 class variable
  • Loading branch information
bzoracler authored May 10, 2024
commit cc50db4451b0dd5082775c644daba6717bd15096
2 changes: 2 additions & 0 deletions stdlib/_ast.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class AST:
__match_args__ = ()
_attributes: ClassVar[tuple[str, ...]]
_fields: ClassVar[tuple[str, ...]]
if sys.version_info >= (3, 13):
_field_types: ClassVar[dict[str, Any]]

class mod(AST): ...
class type_ignore(AST): ...
Expand Down