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 pitrou
Recipients belopolsky, jafo, jyasskin, nnorwitz, pitrou, rhettinger
Date 2008-12-17.01:45:54
SpamBayes Score 0.00432769
Marked as misclassified No
Message-id <1229478350.7296.36.camel@localhost>
In-reply-to <1229474357.22.0.397283975819.issue2183@psf.upfronthosting.co.za>
Content
I have started porting to py3k and I've applied the same optimizations
to set and dict comprehensions. I just have a question: I have created
an opcode MAP_ADD which is very similar to STORE_MAP, except that it
takes as argument the stack offset to the dict object. Should I merge
the two opcodes together? (STORE_MAP would be replaced with MAP_ADD(0),
as it takes its dict from the top of the stack).
History
Date User Action Args
2008-12-17 01:45:57pitrousetrecipients: + pitrou, nnorwitz, rhettinger, jafo, belopolsky, jyasskin
2008-12-17 01:45:56pitroulinkissue2183 messages
2008-12-17 01:45:55pitroucreate