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 mark.dickinson
Recipients ezio.melotti, mark.dickinson, skrah, ubershmekel
Date 2010-07-01.10:32:28
SpamBayes Score 0.047438107
Marked as misclassified No
Message-id <1277980350.4.0.170802146381.issue9136@psf.upfronthosting.co.za>
In-reply-to
Content
Removing the decimal module from the equation, the following is enough to trigger this for me.  Stefan's suggestion about the profile module writing to locals sounds right on target.


import profile

class Context(object):
    def __init__(self):
        for name, val in locals().items():
            setattr(self, name, val)

profile.run("Context()")
History
Date User Action Args
2010-07-01 10:32:30mark.dickinsonsetrecipients: + mark.dickinson, ezio.melotti, ubershmekel, skrah
2010-07-01 10:32:30mark.dickinsonsetmessageid: <1277980350.4.0.170802146381.issue9136@psf.upfronthosting.co.za>
2010-07-01 10:32:28mark.dickinsonlinkissue9136 messages
2010-07-01 10:32:28mark.dickinsoncreate