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 belopolsky
Recipients belopolsky
Date 2010-09-24.16:57:44
SpamBayes Score 1.8228049e-07
Marked as misclassified No
Message-id <1285347468.19.0.483467963743.issue9941@psf.upfronthosting.co.za>
In-reply-to
Content
The trace and profile modules provide similar functionality, but have some gratuitous differences in their APIs and command line interfaces.

For example, the method to trace a single call is Trace.runfunc, but almost identical Profile method is called "runcall".

The CLIs provided by the two modules are vastly different: profile splits out formatting of the results into a separate module, pstats, while trace module includes many options to control the output of traced runs.

This situation leeds to an unnecessary burden on users who need to learn two different ways to do very similar things.
History
Date User Action Args
2010-09-24 16:57:48belopolskysetrecipients: + belopolsky
2010-09-24 16:57:48belopolskysetmessageid: <1285347468.19.0.483467963743.issue9941@psf.upfronthosting.co.za>
2010-09-24 16:57:45belopolskylinkissue9941 messages
2010-09-24 16:57:44belopolskycreate