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.
Created on 2013年06月06日 04:16 by hanks, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg190705 - (view) | Author: hanks (hanks) | Date: 2013年06月06日 04:16 | |
link: http://docs.python.org/2/library/profile.html The example in this page: import cProfile, pstats, io pr = cProfile.Profile() pr.enable() ... do something ... pr.disable() s = io.StringIO() ps = pstats.Stats(pr, stream=s) ps.print_results() # actually Stats objects has no method called "print_results" |
|||
| msg190707 - (view) | Author: Dmi Baranov (dmi.baranov) * | Date: 2013年06月06日 09:08 | |
Duplication of issue 18033 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:46 | admin | set | github: 62346 |
| 2013年06月06日 09:40:47 | r.david.murray | set | superseder: Example for Profile Module shows incorrect method resolution: duplicate stage: resolved |
| 2013年06月06日 09:14:13 | hanks | set | status: open -> closed |
| 2013年06月06日 09:08:56 | dmi.baranov | set | nosy:
+ dmi.baranov messages: + msg190707 |
| 2013年06月06日 04:16:09 | hanks | create | |