summaryrefslogtreecommitdiff
path: root/Lib/test/test_heapq.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
* Extend test coverage to include heapifying large heapsRaymond Hettinger2015-05-121-1/+1
* Factor common code into internal functions.Raymond Hettinger2014-06-141-2/+2
* Issue #13742: Add key and reverse parameters to heapq.merge()Raymond Hettinger2014-05-301-4/+15
* Issue 21424: Apply the nlargest() optimizations to nsmallest() as well.Raymond Hettinger2014-05-111-1/+1
* Issue #21424: Optimize heaqp.nlargest() to make fewer tuple comparisons.Raymond Hettinger2014-05-111-1/+1
* Issue #19018: The heapq.merge() function no longer suppresses IndexErrorRaymond Hettinger2013-09-141-0/+9
* Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the li...Antoine Pitrou2013-03-041-0/+26
|\
| * Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the li...Antoine Pitrou2013-03-041-0/+26
* | #16748: test_heapq now works with unittest test discovery.Ezio Melotti2013-01-021-27/+8
|/
* Merge with 3.1.Ezio Melotti2011-05-091-10/+10
|\
| * Some more tests were incorrectly marked as C specific.Ezio Melotti2011-05-091-12/+10
* | #11910: merge with 3.1.Ezio Melotti2011-05-091-15/+29
|\ \ | |/
| * #11910: Fix test_heapq to skip the C tests when _heapq is missing.Ezio Melotti2011-05-091-20/+27
| * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-1/+1
* | Some tests were incorrectly marked as C specific.Ezio Melotti2011-05-091-3/+9
* | Issue 3051: make pure python code pass the same tests as the C version.Raymond Hettinger2011-04-131-11/+5
* | Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-2/+0
* | convert old fail* assertions to assert*Benjamin Peterson2009-06-301-1/+1
|/
* Merged revisions 71799 via svnmerge fromNick Coghlan2009-04-221-1/+1
* Merged revisions 71465 via svnmerge fromNick Coghlan2009-04-111-16/+14
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-2/+2
* Remove 2.6 compatibility code:Amaury Forgeot d'Arc2008-06-171-3/+3
* Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,...Amaury Forgeot d'Arc2008-06-171-1/+2
* Merged revisions 64089,64098,64100-64102,64113,64115-64116,64118,64120,64132,...Amaury Forgeot d'Arc2008-06-171-0/+21
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-3/+3
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-0/+28
* Move itertools izip() code to builtins as zip(). Complete the renaming.Raymond Hettinger2008-03-131-1/+1
* Issues 2186 and 2187. Move map() from itertools to builtins.Raymond Hettinger2008-03-131-2/+2
* Merged revisions 61003-61033 via svnmerge fromChristian Heimes2008-02-241-49/+79
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-6/+7
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-4/+4
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-1/+24
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-12/+12
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-1/+2
* Add key= argument to heapq.nsmallest() and heapq.nlargest().Raymond Hettinger2004-12-021-1/+7
* Fix argument order in pure python version of nsmallest() and nlargest().Raymond Hettinger2004-11-291-2/+5
* Plug a leak and beef-up test coverage.Raymond Hettinger2004-09-281-0/+149
* Whitespace normalization.Tim Peters2004-07-081-1/+0
* Exercise some error conditionsNeal Norwitz2004-07-081-0/+10
* Reverse argument order for nsmallest() and nlargest().Raymond Hettinger2004-06-151-4/+4
* Install C version of heapq.nsmallest().Raymond Hettinger2004-06-131-6/+19
* Improve the memory performance and speed of heapq.nsmallest() by usingRaymond Hettinger2004-06-121-0/+1
* Convert test_heapq.py to unittests.Raymond Hettinger2004-06-101-86/+90
* SF patch #969791: Add nlargest() and nsmallest() to heapq.Raymond Hettinger2004-06-101-1/+10
* Add another test which exercises the whole suite with aRaymond Hettinger2002-12-071-0/+14
* Added new heapreplace(heap, item) function, to pop (and return) theTim Peters2002-08-031-3/+2
* Minor fiddling, including a simple class to implement a heap iteratorTim Peters2002-08-031-5/+18