1. 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
  2. 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
  3. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  4. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  5. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  6. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  7. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  8. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  9. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  10. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  11. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  12. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  13. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  14. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  15. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  16. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  17. b25aa36 Improve the memory performance and speed of heapq.nsmallest() by using by Raymond Hettinger · 20 years ago
  18. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  19. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  20. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  21. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  22. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  23. f2928eb Fix typo in comment. by Fred Drake · 22 years ago
  24. a853cc6 Added __all__. by Raymond Hettinger · 22 years ago
  25. 5f7617b Fixed misspelling in comment. by Tim Peters · 22 years ago
  26. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  27. 3c8dd0c Simplify heapreplace() -- there's no need for an explicit test for by Guido van Rossum · 22 years ago
  28. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  29. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  30. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  31. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  32. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  33. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  34. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  35. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  36. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  37. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  38. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  39. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago