diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:51:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:51:44 (GMT) |
commit | 3d1f09557bd447b2e45bf90385391ffc16eafe13 (patch) | |
tree | 6b0e7a3dcef1fbd8f0611b79916429bb1c19c6c9 /Include/opcode.h | |
parent | b17d5dea4872f73b2e48f8236a60a2c6e74e7067 (diff) | |
download | cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.zip cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.tar.gz cpython-3d1f09557bd447b2e45bf90385391ffc16eafe13.tar.bz2 |
changes for ** (power) operator
Diffstat (limited to 'Include/opcode.h')
-rw-r--r-- | Include/opcode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index 9725580..401f765 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -43,6 +43,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define UNARY_INVERT 15 +#define BINARY_POWER 19 + #define BINARY_MULTIPLY 20 #define BINARY_DIVIDE 21 #define BINARY_MODULO 22 |