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, sandro.tosi, terry.reedy
Date 2012-01-08.20:39:16
SpamBayes Score 0.0016363317
Marked as misclassified No
Message-id <1326055238.02.0.19378700044.issue13026@psf.upfronthosting.co.za>
In-reply-to
Content
"For each keyword only default" is not in my text, but if you are referring to "keyword only name, default parameter object pairs ", yes. Here is a revised suggested wording:

MAKE_FUNCTION(argc)
Pushes a new function object on the stack. From bottom to top, the consumed stack must have have (argc & 0xFF) default argument objects in positional order, ((argc >> 8) & 0xFF) (name, default argument) pairs, with name just below the object on the stack, for keyword-only parameters, ((argc >> 16) & 0x7FFF) parameter annotation objects, a tuple listing the parameter names for the annotations, and finally a code object as TOS.
History
Date User Action Args
2012-01-08 20:40:38terry.reedysetrecipients: + terry.reedy, arno, sandro.tosi, docs@python
2012-01-08 20:40:38terry.reedysetmessageid: <1326055238.02.0.19378700044.issue13026@psf.upfronthosting.co.za>
2012-01-08 20:39:16terry.reedylinkissue13026 messages
2012-01-08 20:39:16terry.reedycreate