summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-21 17:18:40 (GMT)
committerBarry Warsaw <barry@python.org>2000-08-21 17:18:40 (GMT)
commit203da6dfe4e8aefbaa32c97072bdd530505cbca6 (patch)
tree557a92d94f02d3569723cdbdb5de99a75fec916e /Lib/dis.py
parent24703a02e737134ee71368d891d5170500885db7 (diff)
downloadcpython-203da6dfe4e8aefbaa32c97072bdd530505cbca6.zip
cpython-203da6dfe4e8aefbaa32c97072bdd530505cbca6.tar.gz
cpython-203da6dfe4e8aefbaa32c97072bdd530505cbca6.tar.bz2
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 fce39f2..3a80e74 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)