summaryrefslogtreecommitdiff
path: root/Lib/test/test_heapq.py
Commit message (Expand)AuthorAgeFilesLines
* Some more tests were incorrectly marked as C specific.Ezio Melotti2011-05-091-13/+14
* #11910: Fix test_heapq to skip the C tests when _heapq is missing.Ezio Melotti2011-05-091-15/+29
* Fix cut and paste error.Raymond Hettinger2011-05-071-1/+1
* Some tests were incorrectly marked as C specific.Raymond Hettinger2011-05-071-3/+8
* Issue 3051: make pure python code pass the same tests as the C version.Raymond Hettinger2011-04-131-11/+5
* Issue 7871: Delete unused test.Raymond Hettinger2010-08-221-8/+0
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-1/+4
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+0
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-2/+1
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-1/+2
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-1/+1
* Issue 5354: Change API for import_fresh_module() to better support test_warni...Nick Coghlan2009-04-221-1/+1
* Issue 5354: Provide a standardised testing mechanism for doing fresh imports ...Nick Coghlan2009-04-111-16/+14
* Fix typo in method name. The LT class implemented less than. The LE classNeal Norwitz2008-06-131-1/+1
* Add test for heapq using both __lt__ and __le__.Raymond Hettinger2008-06-111-0/+21
* Issue 2274: Add heapq.heappushpop().Raymond Hettinger2008-03-131-0/+28
* In test_heapq and test_bisect, test both the Python and the C implementation.Georg Brandl2008-02-231-49/+79
* Add test for merge stabilityRaymond Hettinger2007-02-191-0/+15
* Add merge() function to heapq.Raymond Hettinger2007-02-191-1/+9
* Fix stability of heapq's nlargest() and nsmallest().Raymond Hettinger2007-01-041-12/+12
* 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
* Hmm! I thought I checked this in before! Oh well.Tim Peters2002-08-021-1/+19
* check_invariant(): Use the same child->parent "formula" used by heapq.py.Tim Peters2002-08-021-2/+2
* Don't use true division where int division was intended. For that matter,Tim Peters2002-08-021-1/+1
* Adding the heap queue algorithm, per discussion in python-dev lastGuido van Rossum2002-08-021-0/+48