Message112070
| 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. |
|