aml_hef_341311010 (11181353,com.google.android.healthfitness)
  1. 6a8163a Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  2. 9a2325f Fix unintended switch from a constant to a global in 56a3c0bc4634 by Raymond Hettinger · 11 years ago
  3. 39659f2 Issue #19018: The heapq.merge() function no longer suppresses IndexError by Raymond Hettinger · 11 years ago
  4. 3e6aafe Issue #16098: Update heapq.nsmallest to use the same algorithm as nlargest. by Raymond Hettinger · 11 years ago
  5. e11a47e 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
  6. 4800d64 Minor tweaks to a few comments in heapq by Éric Araujo · 13 years ago
  7. 9b342c6 Issue 3051: make pure python code pass the same tests as the C version. by Raymond Hettinger · 13 years ago
  8. b006fcc Make life easier for non-CPython implementations. by Raymond Hettinger · 15 years ago
  9. be9b765 Speedup and simplify negative counter using count's new step argument. by Raymond Hettinger · 15 years ago
  10. fb921e2 I believe the intention here was to avoid a global lookup by Benjamin Peterson · 15 years ago
  11. b6e112b fix encoding cookie case by Benjamin Peterson · 15 years ago
  12. b5bc33c Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size. by Raymond Hettinger · 15 years ago
  13. fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 15 years ago
  14. 6d7702e Implement heapq in terms of less-than (to match list.sort()). by Raymond Hettinger · 16 years ago
  15. 83aa6a3 Simplify the nlargest() code using heappushpop(). by Raymond Hettinger · 16 years ago
  16. 53bdf09 Issue 2274: Add heapq.heappushpop(). by Raymond Hettinger · 16 years ago
  17. 3035d23 Docstring nit. by Raymond Hettinger · 17 years ago
  18. cbac8ce Fixup docstrings for merge(). by Raymond Hettinger · 17 years ago
  19. 45eb0f1 Use C heapreplace() instead of slower _siftup() in pure python. by Raymond Hettinger · 17 years ago
  20. 54da981 Add tie-breaker count to preserve sort stability. by Raymond Hettinger · 17 years ago
  21. 00166c5 Add merge() function to heapq. by Raymond Hettinger · 17 years ago
  22. 769a40a Fix stability of heapq's nlargest() and nsmallest(). by Raymond Hettinger · 17 years ago
  23. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  24. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  25. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  26. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  27. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  28. b25aa36 Improve the memory performance and speed of heapq.nsmallest() by using by Raymond Hettinger · 20 years ago
  29. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  30. c46cb2a * Restore the pure python version of heapq.py. by Raymond Hettinger · 20 years ago
  31. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  32. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  33. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  34. f2928eb Fix typo in comment. by Fred Drake · 22 years ago
  35. a853cc6 Added __all__. by Raymond Hettinger · 22 years ago
  36. 5f7617b Fixed misspelling in comment. by Tim Peters · 22 years ago
  37. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  38. 3c8dd0c Simplify heapreplace() -- there's no need for an explicit test for by Guido van Rossum · 22 years ago
  39. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  40. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  41. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  42. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  43. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  44. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  45. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  46. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  47. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  48. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  49. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  50. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago