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 eli.bendersky
Recipients Alexander.Belopolsky, belopolsky, eli.bendersky, pitrou, terry.reedy
Date 2010-07-30.12:19:16
SpamBayes Score 0.010149409
Marked as misclassified No
Message-id <1280492358.07.0.153973201152.issue9315@psf.upfronthosting.co.za>
In-reply-to
Content
Some more unit tests show that a problem with method names exists in Lib/trace.py even in 2.7 (and probably earlier). When tracing an instance method with `runfunc`, its name is reported as follows:

    ClassName'>.method_name

Instead of:

    ClassName.method_name

Alexander, the part of your fix to trace.py in the file_module_function_of method fixes this problem. It should be applied to 2.7 as well, though.
History
Date User Action Args
2010-07-30 12:19:18eli.benderskysetrecipients: + eli.bendersky, terry.reedy, belopolsky, pitrou, Alexander.Belopolsky
2010-07-30 12:19:18eli.benderskysetmessageid: <1280492358.07.0.153973201152.issue9315@psf.upfronthosting.co.za>
2010-07-30 12:19:16eli.benderskylinkissue9315 messages
2010-07-30 12:19:16eli.benderskycreate