summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cprofile.py
Commit message (Collapse)AuthorAgeFilesLines
* remove the svn:executable property from files that don't have shebang linesBenjamin Peterson2010-03-051-0/+0
|
* Issue #5330: C functions called with keyword arguments were not reported byAntoine Pitrou2009-05-301-0/+1
| | | | the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
* The _lsprof module could crash the interpreter if it was given an externalBrett Cannon2008-09-291-1/+15
| | | | | | | | timer that did not return a float and a timer was still running when the Profiler object was garbage collected. Fixes issue 3895. Code review by Benjamin Peterson.
* * Use the same code to profile for test_profile and test_cprofile.Georg Brandl2008-02-051-202/+106
| | | | | | | | * Convert both to unittest. * Use the same unit testing code. * Include the expected output in both test files. * Make it possible to regenerate the expected output by running the file as a script with an '-r' argument.
* Rewrite test_cprofile as unittest (and rename the file to be consistentGeorg Brandl2008-02-021-0/+208
with all other test files). Written for GHOP by Benjamin Peterson.