summaryrefslogtreecommitdiff
path: root/Modules/_lsprof.c
Commit message (Expand)AuthorAgeFilesLines
* Fix docstring of Profiler class (GH-8651)Miss Islington (bot)2018-08-031-2/+2
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-6/+3
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-15/+15
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-051-4/+0
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
|\ \ | |/
* | Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-5/+2
|/
* Issue #21863: cProfile now displays the module name of C extension functions,...Antoine Pitrou2014-06-271-2/+9
* Issue #20315: Removed support for backward compatibility with early 2.x versi...Serhiy Storchaka2014-01-201-12/+0
|\
| * Issue #20315: Removed support for backward compatibility with early 2.x versi...Serhiy Storchaka2014-01-201-12/+0
* | Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-1/+1
* | Issue #19512: Use the new _PyId_builtins identifierVictor Stinner2013-11-071-1/+1
* | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-4/+6
* | Issue #18203: Replace malloc() with PyMem_Malloc() in Python modulesVictor Stinner2013-07-071-9/+9
* | #16135: Removal of OS/2 support (Modules/*)Jesus Cea2012-10-051-4/+0
|/
* Issue #6697: _lsprof: normalizeUserObj() doesn't encode/decode (UTF-8) theVictor Stinner2011-06-201-26/+19
* Reverted accidental commit (from r87159)Alexander Belopolsky2010-12-101-12/+22
* Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-101-22/+12
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-0/+9
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-585/+585
* Merged revisions 78641 via svnmerge fromVictor Stinner2010-03-041-1/+6
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 66677,66700 via svnmerge fromBenjamin Peterson2008-10-071-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+18
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-3/+3
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-3/+3
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-271-4/+1
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-2/+14
* Fix warningNeal Norwitz2007-08-271-1/+1
* Use unicodeNeal Norwitz2007-08-261-8/+8
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-5/+4
* Fix for cProfile.Guido van Rossum2007-07-161-0/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+8
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-221-2/+2
* Thanks to Coverity, these were all reported by their Prevent tool.Neal Norwitz2006-03-071-0/+2
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* The default timer unit was incorrectly measured in milliseconds insteadArmin Rigo2006-02-101-3/+3
* Added the cProfile module.Armin Rigo2006-02-081-0/+867