This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients arno, docs@python, terry.reedy
Date 2011-09-22.07:02:15
SpamBayes Score 4.7442463e-05
Marked as misclassified No
Message-id <1316674939.42.0.853579461082.issue13026@psf.upfronthosting.co.za>
In-reply-to
Content
Right. This opcode is the end of a sequence of opcodes that sets up the stack in the way expected. Perhaps something like

Pushes a new function object on the stack. From bottom to top, the consumed stack must have have argc & 0xFF positional default parameter objects, (argc >> 8) & 0xFF keyword only name, default parameter object pairs (with name and object in separate positions), (argc >> 16) & 0x7FFF parameter annotations, a tuple listing the parameter names for the annotations, and finally a code object as TOS.
History
Date User Action Args
2011-09-22 07:02:19terry.reedysetrecipients: + terry.reedy, arno, docs@python
2011-09-22 07:02:19terry.reedysetmessageid: <1316674939.42.0.853579461082.issue13026@psf.upfronthosting.co.za>
2011-09-22 07:02:15terry.reedylinkissue13026 messages
2011-09-22 07:02:15terry.reedycreate