From: Barry Warsaw Date: Mon, 21 Aug 2000 17:18:40 +0000 (+0000) Subject: Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. X-Git-Tag: v2.0b1~325 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=203da6dfe4e8aefbaa32c97072bdd530505cbca6;p=thirdparty%2FPython%2Fcpython.git Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. --- diff --git a/Lib/dis.py b/Lib/dis.py index fce39f275b0a..3a80e741f732 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)