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 rhettinger
Recipients
Date 2004-03-06.13:22:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Save about 35% on the per pass overhead of list
comprehensions.

Adds a new opcode, LIST_APPEND, which is faster than
the current call to CALL_FUNCTION 1 on the bound
method, list.append(), and the subsequent call to
POP_TOP to clear the returned None value.

The resulting disassembled code is suprisingly light
and concise.
History
Date User Action Args
2007-08-23 15:32:39adminlinkissue910929 messages
2007-08-23 15:32:39admincreate