mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
This commit is contained in:
parent
2aad6ef774
commit
d51374ed78
42 changed files with 803 additions and 442 deletions
11
Lib/token.py
11
Lib/token.py
|
@ -60,11 +60,12 @@ DOUBLESTAREQUAL = 46
|
|||
DOUBLESLASH = 47
|
||||
DOUBLESLASHEQUAL = 48
|
||||
AT = 49
|
||||
RARROW = 50
|
||||
ELLIPSIS = 51
|
||||
OP = 52
|
||||
ERRORTOKEN = 53
|
||||
N_TOKENS = 54
|
||||
ATEQUAL = 50
|
||||
RARROW = 51
|
||||
ELLIPSIS = 52
|
||||
OP = 53
|
||||
ERRORTOKEN = 54
|
||||
N_TOKENS = 55
|
||||
NT_OFFSET = 256
|
||||
#--end constants--
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue