mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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
|
@ -58,13 +58,14 @@ extern "C" {
|
|||
#define DOUBLESTAREQUAL 46
|
||||
#define DOUBLESLASH 47
|
||||
#define DOUBLESLASHEQUAL 48
|
||||
#define AT 49
|
||||
#define RARROW 50
|
||||
#define ELLIPSIS 51
|
||||
#define AT 49
|
||||
#define ATEQUAL 50
|
||||
#define RARROW 51
|
||||
#define ELLIPSIS 52
|
||||
/* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */
|
||||
#define OP 52
|
||||
#define ERRORTOKEN 53
|
||||
#define N_TOKENS 54
|
||||
#define OP 53
|
||||
#define ERRORTOKEN 54
|
||||
#define N_TOKENS 55
|
||||
|
||||
/* Special definitions for cooperation with parser */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue