summaryrefslogtreecommitdiff
path: root/Modules/_heapqmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* Defend against a mutation during comparisonRaymond Hettinger2015-05-111-0/+5
* Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq.Raymond Hettinger2015-05-021-50/+21
* Issue 21375: Fix possible Py_ssizet overflow in heapq.Raymond Hettinger2014-05-031-8/+8
* Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,Terry Jan Reedy2013-03-111-2/+2
* Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the li...Antoine Pitrou2013-03-041-6/+34
* Show the function signature in the docstringRaymond Hettinger2013-01-181-3/+3
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 84472 via svnmerge fromÉric Araujo2010-09-031-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-446/+446
* Optimize previous checkin for heapq.Raymond Hettinger2008-06-111-1/+7
* Issue 3051: Let heapq work with either __lt__ or __le__.Raymond Hettinger2008-06-111-7/+6
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+1
* Issue 3501: Make heapq support both __le__ and __lt__.Raymond Hettinger2008-06-061-11/+28
* Implement heapq in terms of less-than (to match list.sort()).Raymond Hettinger2008-05-311-14/+26
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Leave heapreplace() unchanged.Raymond Hettinger2008-03-141-5/+0
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-131-0/+49
* Also make _heapq.nlargest() use Py_ssize_t instead of ints, to iter overThomas Wouters2006-02-161-2/+2
* Use 'n' format for Py_ssize_t variables to PyArg_ParseTuple(). Py_ssize_tThomas Wouters2006-02-161-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-11/+13
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Plug a leak and beef-up test coverage.Raymond Hettinger2004-09-281-4/+12
* Fix erroneous docstring comment.Raymond Hettinger2004-09-061-2/+3
* Improve the documented advice on how to best use heapq.heapreplace().Raymond Hettinger2004-06-201-1/+2
* Reverse argument order for nsmallest() and nlargest().Raymond Hettinger2004-06-151-2/+2
* Fixup error exits in nlargest() and nsmallest().Raymond Hettinger2004-06-131-8/+16
* Install C version of heapq.nsmallest().Raymond Hettinger2004-06-131-5/+162
* Install C version of heapq.nlargest().Raymond Hettinger2004-06-121-0/+76
* Correct the file name of _heapq module.Hye-Shik Chang2004-04-251-0/+364