diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:02:10 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:02:10 (GMT) |
commit | c6d210ca7673c6ce0cb4b77ada22087f58372efc (patch) | |
tree | 905c39266f91fbeebbeb69a5848f9eb5808bc32c /Lib/opcode.py | |
parent | e4993c7ac72842d18fb5689d7c77be2246b65708 (diff) | |
download | cpython-c6d210ca7673c6ce0cb4b77ada22087f58372efc.zip cpython-c6d210ca7673c6ce0cb4b77ada22087f58372efc.tar.gz cpython-c6d210ca7673c6ce0cb4b77ada22087f58372efc.tar.bz2 |
Get rid of last vestiges of BINARY_DIVIDE.
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 095ca42..2b9212f 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -61,7 +61,7 @@ def_op('UNARY_INVERT', 15) def_op('LIST_APPEND', 18) def_op('BINARY_POWER', 19) def_op('BINARY_MULTIPLY', 20) -def_op('BINARY_DIVIDE', 21) + def_op('BINARY_MODULO', 22) def_op('BINARY_ADD', 23) def_op('BINARY_SUBTRACT', 24) |