mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-119180: PEP 649 compiler changes (#119361)
This commit is contained in:
parent
02c1dfff07
commit
9b8611eeea
28 changed files with 610 additions and 329 deletions
|
@ -77,6 +77,11 @@ CLASSES
|
|||
| __weakref__%s
|
||||
|
||||
class B(builtins.object)
|
||||
| Methods defined here:
|
||||
|
|
||||
| __annotate__(...)
|
||||
|
|
||||
| ----------------------------------------------------------------------
|
||||
| Data descriptors defined here:
|
||||
|
|
||||
| __dict__%s
|
||||
|
@ -87,8 +92,6 @@ CLASSES
|
|||
| Data and other attributes defined here:
|
||||
|
|
||||
| NO_MEANING = 'eggs'
|
||||
|
|
||||
| __annotations__ = {'NO_MEANING': <class 'str'>}
|
||||
|
||||
class C(builtins.object)
|
||||
| Methods defined here:
|
||||
|
@ -176,6 +179,9 @@ class A(builtins.object)
|
|||
list of weak references to the object
|
||||
|
||||
class B(builtins.object)
|
||||
Methods defined here:
|
||||
__annotate__(...)
|
||||
----------------------------------------------------------------------
|
||||
Data descriptors defined here:
|
||||
__dict__
|
||||
dictionary for instance variables
|
||||
|
@ -184,7 +190,6 @@ class B(builtins.object)
|
|||
----------------------------------------------------------------------
|
||||
Data and other attributes defined here:
|
||||
NO_MEANING = 'eggs'
|
||||
__annotations__ = {'NO_MEANING': <class 'str'>}
|
||||
|
||||
|
||||
class C(builtins.object)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue