summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-08-29 18:02:21 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-08-29 18:02:21 (GMT)
commit96d68d57bebd8e9d7d1f5bcd00e63df5a0cbc915 (patch)
treeeac481a111a8020c037aec9258a90e689331937a /Lib/dis.py
parent4de8df92e93ef2dd08064f6b8ebea59738f189c5 (diff)
downloadcpython-96d68d57bebd8e9d7d1f5bcd00e63df5a0cbc915.zip
cpython-96d68d57bebd8e9d7d1f5bcd00e63df5a0cbc915.tar.gz
cpython-96d68d57bebd8e9d7d1f5bcd00e63df5a0cbc915.tar.bz2
Add opcodes for floor division and true division (PEP 238)
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index 6a9d5cd..6b4c67f 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -175,6 +175,10 @@ def_op('BINARY_MODULO', 22)
def_op('BINARY_ADD', 23)
def_op('BINARY_SUBTRACT', 24)
def_op('BINARY_SUBSCR', 25)
+def_op('BINARY_FLOOR_DIVIDE', 26)
+def_op('BINARY_TRUE_DIVIDE', 27)
+def_op('INPLACE_FLOOR_DIVIDE', 28)
+def_op('INPLACE_TRUE_DIVIDE', 29)
def_op('SLICE+0', 30)
def_op('SLICE+1', 31)