1. 39659f2 Issue #19018: The heapq.merge() function no longer suppresses IndexError by Raymond Hettinger · 12 years ago
  2. 49e4dfe Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently. by Antoine Pitrou · 12 years ago
  3. b47553a Some more tests were incorrectly marked as C specific. by Ezio Melotti · 14 years ago
  4. 5c5d7e2 #11910: Fix test_heapq to skip the C tests when _heapq is missing. by Ezio Melotti · 14 years ago
  5. 1bd816e Fix cut and paste error. by Raymond Hettinger · 14 years ago
  6. 8dd0624 Some tests were incorrectly marked as C specific. by Raymond Hettinger · 14 years ago
  7. 9b342c6 Issue 3051: make pure python code pass the same tests as the C version. by Raymond Hettinger · 14 years ago
  8. e563264 Issue 7871: Delete unused test. by Raymond Hettinger · 15 years ago
  9. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  10. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 16 years ago
  11. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  12. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  13. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  14. 5533ff6 Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation) by Nick Coghlan · 16 years ago
  15. cd2e704 Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks by Nick Coghlan · 16 years ago
  16. 04097a6 Fix typo in method name. The LT class implemented less than. The LE class by Neal Norwitz · 17 years ago
  17. e29a103 Add test for heapq using both __lt__ and __le__. by Raymond Hettinger · 17 years ago
  18. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 17 years ago
  19. 0bb8567 In test_heapq and test_bisect, test both the Python and the C implementation. by Georg Brandl · 17 years ago
  20. 01b9881 Add test for merge stability by Raymond Hettinger · 18 years ago
  21. 00166c5 Add merge() function to heapq. by Raymond Hettinger · 18 years ago
  22. 769a40a Fix stability of heapq's nlargest() and nsmallest(). by Raymond Hettinger · 19 years ago
  23. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 21 years ago
  24. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 21 years ago
  25. 855d9a9 Plug a leak and beef-up test coverage. by Raymond Hettinger · 21 years ago
  26. 27f8836 Whitespace normalization. by Tim Peters · 21 years ago
  27. d7be118 Exercise some error conditions by Neal Norwitz · 21 years ago
  28. aefde43 Reverse argument order for nsmallest() and nlargest(). by Raymond Hettinger · 21 years ago
  29. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 21 years ago
  30. b25aa36 Improve the memory performance and speed of heapq.nsmallest() by using by Raymond Hettinger · 21 years ago
  31. bce036b Convert test_heapq.py to unittests. by Raymond Hettinger · 21 years ago
  32. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 21 years ago
  33. 065c06a Add another test which exercises the whole suite with a by Raymond Hettinger · 23 years ago
  34. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 23 years ago
  35. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 23 years ago
  36. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 23 years ago
  37. d2cf1ab check_invariant(): Use the same child->parent "formula" used by heapq.py. by Tim Peters · 23 years ago
  38. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 23 years ago
  39. 0b19178 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 23 years ago