| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Bug #1656078: typo in in profile docs. | Georg Brandl | 2007-02-09 | 1 | -1/+1 |
| | | | | | (backport from rev. 53697) | ||||
| * | Bug #1482988: indicate more prominently that the Stats class is in the ↵ | Georg Brandl | 2006-05-10 | 1 | -2/+3 |
| | | | | | pstats module. | ||||
| * | - add versionadded tag | George Yoshida | 2006-04-22 | 1 | -1/+3 |
| | | | | | - make arbitrary arguments come last | ||||
| * | Allow pstats.Stats creator to specify an alternate to stdout. | Skip Montanaro | 2006-04-21 | 1 | -9/+9 |
| | | |||||
| * | Typo fix | Andrew M. Kuchling | 2006-04-14 | 1 | -1/+1 |
| | | |||||
| * | Added the cProfile module. | Armin Rigo | 2006-02-08 | 1 | -41/+112 |
| | | | | | | | | | | | | | | | | | | | | | | | | Based on lsprof (patch #1212837) by Brett Rosen and Ted Czotter. With further editing by Michael Hudson and myself. History in svn repo: http://codespeak.net/svn/user/arigo/hack/misc/lsprof * Module/_lsprof.c is the internal C module, Lib/cProfile.py a wrapper. * pstats.py updated to display cProfile's caller/callee timings if available. * setup.py and NEWS updated. * documentation updates in the profiler section: - explain the differences between the three profilers that we have now - profile and cProfile can use a unified documentation, like (c)Pickle - mention that hotshot is "for specialized usage" now - removed references to the "old profiler" that no longer exists * test updates: - extended test_profile to cover delicate cases like recursion - added tests for the caller/callee displays - added test_cProfile, performing the same tests for cProfile * TO-DO: - cProfile gives a nicer name to built-in, particularly built-in methods, which could be backported to profile. - not tested on Windows recently! | ||||
| * | Bug #489256: remove note about Python 1.1 profiler | Georg Brandl | 2005-12-26 | 1 | -41/+41 |
| | | |||||
| * | Bug #1066607: "Limitations" section of profiler docs is incorrect | Raymond Hettinger | 2004-12-19 | 1 | -10/+1 |
| | | |||||
| * | Removed deprecated method from pstats. | Raymond Hettinger | 2004-12-05 | 1 | -8/+0 |
| | | |||||
| * | SF patch #1061780: use a new -m option in pdb and profile invocations | Raymond Hettinger | 2004-11-07 | 1 | -1/+1 |
| | | | | | Doc patch submitted by Ilya Sandler. | ||||
| * | more markup nits | Fred Drake | 2004-03-23 | 1 | -12/+13 |
| | | |||||
| * | fix markup nits | Fred Drake | 2004-03-23 | 1 | -4/+4 |
| | | |||||
| * | Added command line options for profile.py - one for stats output file | Nicholas Bastin | 2004-03-23 | 1 | -0/+9 |
| | | | | | and one for sort order when using stdout. Uses optparse. | ||||
| * | Added global runctx function to profile to fix SF Bug #716587 | Nicholas Bastin | 2004-03-22 | 1 | -1/+7 |
| | | |||||
| * | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | | (From SF patch #810751) | ||||
| * | Fix double word typos. | Raymond Hettinger | 2003-08-25 | 1 | -1/+1 |
| | | |||||
| * | Fix missing parenthesis | Raymond Hettinger | 2003-07-14 | 1 | -1/+1 |
| | | |||||
| * | document Stats.dump_stats(), new for Python 2.3 | Fred Drake | 2003-05-14 | 1 | -0/+8 |
| | | |||||
| * | A copy-and-paste job forget the "paste" half. | Tim Peters | 2001-10-09 | 1 | -1/+1 |
| | | |||||
| * | Allow the profiler's calibration constant to be specified in the constructor | Tim Peters | 2001-10-09 | 1 | -52/+32 |
| | | | | | | | | | call, or via setting an instance or class vrbl. Rewrote the calibration docs. Modern boxes are so friggin' fast, and a profiler event does so much work anyway, that the cost of looking up an instance vrbl (the bias constant) per profile event just isn't a big deal. | ||||
| * | Remove code and docs for the OldProfile and HotProfile classes: code | Tim Peters | 2001-10-07 | 1 | -170/+23 |
| | | | | | | hasn't worked in years, docs were wrong, and they aren't interesting anymore regardless. | ||||
| * | Fix up a few style nits -- avoid "e.g." and "i.e." -- these make | Fred Drake | 2001-07-06 | 1 | -14/+14 |
| | | | | | | translation more difficult, as well as reading the English more difficult for non-native speakers. | ||||
| * | Marked the parameters to Stats.print_*() as optional. | Fred Drake | 2001-07-02 | 1 | -3/+3 |
| | | | | | This closes SF bug #438032. | ||||
| * | Fix an improperly placed comma. | Fred Drake | 2001-06-14 | 1 | -1/+1 |
| | | |||||
| * | In the section on extending the profiler, add some additional discussion | Fred Drake | 2001-06-08 | 1 | -10/+45 |
| | | | | | | | about setting up the dispatch table, and update the OldProfile and HotProfile classes to the current implementations, showing the adjusted construction for the dispatch table. | ||||
| * | Minor markup adjustments. | Fred Drake | 2001-04-13 | 1 | -2/+2 |
| | | | | | Turn reference to the cmd module into a hyperlink. | ||||
| * | Added a test main to the pstats library that can help you browse profile dumps. | Eric S. Raymond | 2001-04-13 | 1 | -0/+5 |
| | | |||||
| * | Make internal module references hyperlinks wherever it makes sense. | Fred Drake | 1999-04-22 | 1 | -1/+1 |
| | | |||||
| * | Misc. markup nits. | Fred Drake | 1999-04-21 | 1 | -28/+29 |
| | | | | | All sections get reasonable file names in the HTML output. | ||||
| * | Fixed latex2html weirdness with footnotes. | Fred Drake | 1999-04-05 | 1 | -13/+11 |
| | | |||||
| * | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -2/+4 |
| | | |||||
| * | Lighten up tables. | Fred Drake | 1998-04-11 | 1 | -1/+1 |
| | | |||||
| * | Don't use \samp when \code is better. | Fred Drake | 1998-04-09 | 1 | -13/+13 |
| | | | | | | | | Consistently use ' instead of ": this conforms to my unofficial stance that constants should be presented using the repr() whenever it makes sense. This isn't because I think repr() is the greatest thing since spam, just that it's an easy to adopt consistency standard. (It also holds no new surprises!) | ||||
| * | Reduced description of the obsolete method Stats.ignore(). | Fred Drake | 1998-04-09 | 1 | -13/+2 |
| | | |||||
| * | Remove all uses of \sectcode; we can now use logical markup everywhere. | Fred Drake | 1998-04-04 | 1 | -1/+1 |
| | | |||||
| * | Index entries. | Fred Drake | 1998-04-03 | 1 | -14/+15 |
| | | | | | Consistency nits. | ||||
| * | Hyphenate "built-in" for consistency. | Fred Drake | 1998-04-02 | 1 | -1/+1 |
| | | |||||
| * | Use the new {methoddesc} and {memberdesc} environments as appropriate. | Fred Drake | 1998-03-27 | 1 | -22/+22 |
| | | |||||
| * | According to Tim Peters, there should be 'print' statements in one | Guido van Rossum | 1998-03-17 | 1 | -3/+3 |
| | | | | | particular example. | ||||
| * | Change "\," to just "," in function signatures. This is easier to maintain, | Fred Drake | 1998-03-17 | 1 | -7/+7 |
| | | | | | | works better with LaTeX2HTML, and allows some simplification of the python.sty macros. | ||||
| * | Logical markup. | Fred Drake | 1998-02-27 | 1 | -81/+93 |
| | | |||||
| * | Add a period to "Written by James Roskind" | Fred Drake | 1998-02-22 | 1 | -1/+1 |
| | | |||||
| * | Added \label{} for logical addressing. | Fred Drake | 1998-02-18 | 1 | -0/+1 |
| | | |||||
| * | Make one paragraph wrap a little better. | Fred Drake | 1998-02-13 | 1 | -1/+1 |
| | | |||||
| * | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -48/+48 |
| | | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
| * | Removed unnecessary \small{} block; latex2html got it wrong and its no | Fred Drake | 1997-12-23 | 1 | -2/+0 |
| | | | | | longer needed for printed output. | ||||
| * | Clarified reference to old profiler. | Guido van Rossum | 1997-11-18 | 1 | -3/+7 |
| | | | | | Mention conversion to Perl-style regular expressions. | ||||
| * | AMK's megapatch: | Guido van Rossum | 1997-07-17 | 1 | -106/+104 |
| | | | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files | ||||
| * | Mention use of profile.py to run a script (AMK). | Guido van Rossum | 1997-06-02 | 1 | -0/+4 |
| | | |||||
| * | (lib<all sorts of stuff>.tex): | Fred Drake | 1996-12-13 | 1 | -1/+1 |
| | | | | | | Merged in many typo corrections and fixes to support GNU info processing; submitted by Tamito Kajiyama. | ||||
