1. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  2. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  3. b25aa36 Improve the memory performance and speed of heapq.nsmallest() by using by Raymond Hettinger · 20 years ago
  4. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  5. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  6. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  7. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  8. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  9. f2928eb Fix typo in comment. by Fred Drake · 22 years ago
  10. a853cc6 Added __all__. by Raymond Hettinger · 22 years ago
  11. 5f7617b Fixed misspelling in comment. by Tim Peters · 22 years ago
  12. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  13. 3c8dd0c Simplify heapreplace() -- there's no need for an explicit test for by Guido van Rossum · 22 years ago
  14. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  15. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  16. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  17. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  18. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  19. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  20. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  21. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  22. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  23. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  24. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  25. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago