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 jyasskin
Recipients collinwinter, jyasskin
Date 2009-05-07.18:24:49
SpamBayes Score 0.0009121876
Marked as misclassified No
Message-id <1241720694.59.0.328707962514.issue5959@psf.upfronthosting.co.za>
In-reply-to
Content
Most uses of PyCode_New found by
http://www.google.com/codesearch?q=PyCode_New are trying to build an
empty code object, usually to put it in a dummy frame object. This patch
adds a PyCode_NewEmpty wrapper which lets the user specify just the
filename, function name, and first line number, instead of also
requiring lots of code internals.
History
Date User Action Args
2009-05-07 18:24:54jyasskinsetrecipients: + jyasskin, collinwinter
2009-05-07 18:24:54jyasskinsetmessageid: <1241720694.59.0.328707962514.issue5959@psf.upfronthosting.co.za>
2009-05-07 18:24:52jyasskinlinkissue5959 messages
2009-05-07 18:24:52jyasskincreate