summaryrefslogtreecommitdiff
path: root/Lib/profile.py
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-051-17/+1
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+1
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-1/+16
* bpo-32512: Add -m option to profile for profiling modules (#5132)Mario Corchero2018-11-051-11/+21
* time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner2017-10-171-1/+1
* bpo-30166: Import command-line parsing modules only when needed. (#1293)Serhiy Storchaka2017-05-041-3/+4
* Fix #17197: profile/cProfile modules refactored so that code of run() and run...Giampaolo Rodola'2013-02-251-19/+37
* modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-121-4/+3
* Issue #14428: Use the new time.perf_counter() and time.process_time() functionsVictor Stinner2012-04-291-34/+2
* strip trailing wsBenjamin Peterson2011-06-271-3/+3
* update profile license (closes #12417)Benjamin Peterson2011-06-271-24/+15
* #9428: fix running scripts from profile/cProfile with their own name and the ...Georg Brandl2010-08-021-10/+18
* Remove traces of MacOS9 support.Ronald Oussoren2010-05-051-9/+0
* Issue #4282: Fix the main function of the profile module for a non-ASCIIVictor Stinner2010-03-221-4/+1
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
* Merged revisions 74773 via svnmerge fromMatthias Klose2009-09-131-2/+2
* Remove the just-removed "help" from __all__.Georg Brandl2009-09-041-1/+1
* Remove backwards compatibility stuff from profile/cProfile.Georg Brandl2009-09-041-7/+0
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+6
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-2/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-8/+8
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-1/+1
* test and fix for buggy handling of exceptions raised by C functions,Armin Rigo2005-09-201-1/+1
* Patch #645894: Use getrusage for computing the time consumption inMartin v. Löwis2005-03-031-2/+20
* Whitespace normalization.Tim Peters2005-01-101-3/+3
* Bug #489256: remove out of date and out of place profile.doc, and letJohannes Gijsbers2005-01-101-13/+3
* Move code in __name__ == '__main__' block into main() function, rewrite code soJohannes Gijsbers2005-01-091-16/+14
* Using repr() generates entries that the current stats package can'tNicholas Bastin2004-07-121-4/+4
* Fix SF Bug #989066Nicholas Bastin2004-07-121-4/+4
* Whitespace normalization.Tim Peters2004-07-071-2/+2
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-241-1/+30
* Add runctx to __all__.Guido van Rossum2004-03-231-1/+1
* Added command line options for profile.py - one for stats output fileNicholas Bastin2004-03-231-13/+27
* Added global runctx function to profile to fix SF Bug #716587Nicholas Bastin2004-03-221-0/+17
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Remove unneeded import.Guido van Rossum2003-10-221-1/+0
* Replace a reduce() with sum().Raymond Hettinger2003-10-221-3/+2
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-021-4/+3
* Replace boolean test with is None.Raymond Hettinger2002-06-011-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-2/+2
* Added a missing period at the end of an error message.Fred Drake2001-12-051-2/+2
* Minor code cleanups based on comments from Neal Norwitz.Fred Drake2001-10-171-3/+2
* Repair key stutter + auto-complete ugliness.Tim Peters2001-10-091-2/+2
* Allow the profiler's calibration constant to be specified in the constructorTim Peters2001-10-091-19/+27
* A brand new implementation of Profile.calibrate(). This measures anTim Peters2001-10-091-41/+62
* Typo repair in comment.Tim Peters2001-10-071-1/+1
* Guido points out that the comments for self.cur[2] were subtly butTim Peters2001-10-071-17/+29
* At Guido's request, changed the code that's conceptually asserting stuffTim Peters2001-10-071-11/+9