mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
PEP-0318, @decorator-style. In Guido's words:
"@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728.
This commit is contained in:
parent
fd7dc5169c
commit
c2a5a63654
28 changed files with 2965 additions and 2335 deletions
|
@ -60,9 +60,10 @@ RIGHTSHIFTEQUAL = 46
|
|||
DOUBLESTAREQUAL = 47
|
||||
DOUBLESLASH = 48
|
||||
DOUBLESLASHEQUAL = 49
|
||||
OP = 50
|
||||
ERRORTOKEN = 51
|
||||
N_TOKENS = 52
|
||||
AT = 50
|
||||
OP = 51
|
||||
ERRORTOKEN = 52
|
||||
N_TOKENS = 53
|
||||
NT_OFFSET = 256
|
||||
#--end constants--
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue