[issue3400] dis module: undocumented new bytecodes

2008-07-20 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: MAKE_BYTES is no longer in opcode.h; removed it in r65160. Documented the other three, which are new in 3k, in r65161. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMA

[issue3400] dis module: undocumented new bytecodes

2008-07-17 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Terry, would you like to contribute a patch (even if only for the one you understand)? -- nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]> __

[issue3400] dis module: undocumented new bytecodes

2008-07-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: LOAD_BUILD_CLASS is 3.0 only and I documented it. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3400] dis module: undocumented new bytecodes

2008-07-17 Thread Terry J. Reedy
New submission from Terry J. Reedy <[EMAIL PROTECTED]>: dis / Python Bytecode Instructions is missing UNPACK_EX STORE_LOCALS LOAD_BUILD_CLASS MAKE_BYTES which appear in dis.opname (3.0 version). Suggestion: After entry for UNPACK_SEQUENCE(count), add UNPACK_EX(bytepair) Used for starred assignme