1. 2e8d9a7 Fix typo by Raymond Hettinger · 11 years ago
  2. f6b2667 Issue #16098: Update heapq.nsmallest to use the same algorithm as nlargest. by Raymond Hettinger · 11 years ago
  3. e584457 Issue 13274: Make the pure python code for heapq more closely match the C implementation for an undefined corner case. by Raymond Hettinger · 13 years ago
  4. 37e6c54 Merge 3.1 by Éric Araujo · 13 years ago
  5. 395ba35 Minor tweaks to a few comments in heapq by Éric Araujo · 13 years ago
  6. 8a9c4d9 Issue 3051: make pure python code pass the same tests as the C version. by Raymond Hettinger · 13 years ago
  7. b4a17a8 Remove coding cookie from heapq.py. by Mark Dickinson · 14 years ago
  8. 0dd737b Make life easier for non-CPython implementations by Raymond Hettinger · 15 years ago
  9. ba86fa9 In Py3.x, a list comprehension is now faster than list(map(itemgetter(0), iterable)). by Raymond Hettinger · 15 years ago
  10. bd171bc Port r69838: Speedup and simplify negative counter using count's new step argument. by Raymond Hettinger · 15 years ago
  11. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 15 years ago
  12. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  13. aa06900 Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge from by Benjamin Peterson · 16 years ago
  14. 18e9512 Merged revisions 68546 via svnmerge from by Benjamin Peterson · 16 years ago
  15. 3a9b062 Manually merge r68096,68189 from 3.0 branch. by Georg Brandl · 16 years ago
  16. f78e02b Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from by Georg Brandl · 16 years ago
  17. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  18. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  19. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  20. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  21. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  22. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  23. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  24. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  25. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  26. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  27. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  28. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  29. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  30. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  31. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  32. b25aa36 Improve the memory performance and speed of heapq.nsmallest() by using by Raymond Hettinger · 20 years ago
  33. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  34. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  35. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  36. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  37. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  38. f2928eb Fix typo in comment. by Fred Drake · 22 years ago
  39. a853cc6 Added __all__. by Raymond Hettinger · 22 years ago
  40. 5f7617b Fixed misspelling in comment. by Tim Peters · 22 years ago
  41. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  42. 3c8dd0c Simplify heapreplace() -- there's no need for an explicit test for by Guido van Rossum · 22 years ago
  43. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  44. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  45. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  46. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  47. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  48. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  49. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  50. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  51. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  52. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  53. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  54. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago