]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.
authorBarry Warsaw <barry@python.org>
Mon, 21 Aug 2000 17:18:40 +0000 (17:18 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 21 Aug 2000 17:18:40 +0000 (17:18 +0000)
Lib/dis.py

index fce39f275b0a8214c042c6fb78e22c469ca74cb9..3a80e741f73227301489ffeda554ee00747caac1 100644 (file)
@@ -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)