summaryrefslogtreecommitdiff
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-21 17:18:40 +0000
committerBarry Warsaw <barry@python.org>2000-08-21 17:18:40 +0000
commit818676df495b5465920c5434d12ee39eb29e3158 (patch)
treeaafd01441fd10b7b9ac3898fe1b57f9c1c91c09b /Lib/dis.py
parentb495e0e5f127284ac6db0b6fbf2a453402262bc5 (diff)
downloadcpython-818676df495b5465920c5434d12ee39eb29e3158.tar.gz
Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index fce39f275b..3a80e741f7 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -190,6 +190,8 @@ def_op('BINARY_OR', 66)
def_op('PRINT_EXPR', 70)
def_op('PRINT_ITEM', 71)
def_op('PRINT_NEWLINE', 72)
+def_op('PRINT_ITEM_TO', 73)
+def_op('PRINT_NEWLINE_TO', 74)
def_op('BREAK_LOOP', 80)