diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-04-09 23:55:56 -0400 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-04-09 23:55:56 -0400 |
| commit | d51374ed78a3e3145911a16cdf3b9b84b3ba7d15 (patch) | |
| tree | 31f9086f20f5b8923604f41f1a4d139fa809aaed /Include/opcode.h | |
| parent | 2aad6ef77419887f5875ba942e9369b4bdd34a5e (diff) | |
| download | cpython-git-d51374ed78a3e3145911a16cdf3b9b84b3ba7d15.tar.gz | |
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Diffstat (limited to 'Include/opcode.h')
| -rw-r--r-- | Include/opcode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index 0936f2d9f4..9e5f0bf5d1 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -20,6 +20,9 @@ extern "C" { #define UNARY_INVERT 15 +#define BINARY_MATRIX_MULTIPLY 16 +#define INPLACE_MATRIX_MULTIPLY 17 + #define BINARY_POWER 19 #define BINARY_MULTIPLY 20 |
