1. bd81cbd DOC: In `reduce`, refer to `accumulate` (GH-7930) by Gerrit Holl · 6 years ago
  2. c651275 bpo-32380: Create functools.singledispatchmethod (#6306) by Ethan Smith · 6 years ago
  3. e569753 bpo-32227: functools.singledispatch supports registering via type annotations (#4733) by Łukasz Langa · 7 years ago
  4. 0e61e67 bpo-31567: add or fix decorator markup in docs (#3959) by Daisuke Miyakawa · 7 years ago
  5. 4adf01c Issue #19795: Improved more markups of True/False. by Serhiy Storchaka · 8 years ago
  6. ecf41da Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 8 years ago
  7. bae5d81 Issue #24314: Fix doc links for general attributes like __name__, __dict__ by Martin Panter · 8 years ago
  8. 0c0da48 Issue #24136: Document generalized unpacking, PEP 448 by Martin Panter · 8 years ago
  9. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 8 years ago
  10. 472233e Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs by Berker Peksag · 8 years ago
  11. 5d94134 Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch. by Georg Brandl · 8 years ago
  12. 558dcf3 Issue #23049: Pure python equivalent shouldn't imply more exactitude than is really there. by Raymond Hettinger · 10 years ago
  13. 86e9b6b Issue 22830: Clarify docs for functools.cmp_to_key(). by Raymond Hettinger · 10 years ago
  14. 525d355 Fixing broken links in doc, part 3: the rest by Georg Brandl · 10 years ago
  15. 67f6d5f #21928: clarify functools.wraps docs. by Ezio Melotti · 10 years ago
  16. 3a43403 make partialmethod example work (closes #21105) by Benjamin Peterson · 10 years ago
  17. 3daaf5f Fix functools.partialmethod docs and __all__ by Nick Coghlan · 11 years ago
  18. f4cb48a Issue #4331: Added functools.partialmethod by Nick Coghlan · 11 years ago
  19. 84fc708 merge by Raymond Hettinger · 11 years ago
  20. 6480168 Issue #19202: Add cross-reference and a rough code equivalent by Raymond Hettinger · 11 years ago
  21. f05d981 Close #10042: functools.total_ordering now handles NotImplemented by Nick Coghlan · 11 years ago
  22. 24c05bc Close issue 17482: don't overwrite __wrapped__ by Nick Coghlan · 11 years ago
  23. fdcf2b7 moved the single-dispatch generic function definitions to the glossary by Łukasz Langa · 11 years ago
  24. 6f69251 Add reference implementation for PEP 443 by Łukasz Langa · 11 years ago
  25. 17328e4 Clean-up lru_cache examples. The print() not is needed. Set maxsize to a power of two. by Raymond Hettinger · 11 years ago
  26. 7d74eff Add usage note. by Raymond Hettinger · 12 years ago
  27. 010ce32 Minor change to default lru size. Set default to a power of two. by Raymond Hettinger · 12 years ago
  28. b0f30c9 merge with 3.2 by Georg Brandl · 13 years ago
  29. 6c89a79 #13852: some small doc fixes. by Georg Brandl · 13 years ago
  30. 5b45a01 merge from 3.2 by Georg Brandl · 13 years ago
  31. 3b65fd7 #13816: fix two minor style issues. Thanks to Justin Wehnes for the patch. by Georg Brandl · 13 years ago
  32. 37c7a06 #13695: merge with 3.2. by Ezio Melotti · 13 years ago
  33. 9ecb6be #13695: fix a couple of typos in the doc. by Ezio Melotti · 13 years ago
  34. cd9fdfd Issue 13227: Option to make the lru_cache() type specific (suggested by Andrew Koenig). by Raymond Hettinger · 13 years ago
  35. 05ce079 Missed two source links by Raymond Hettinger · 14 years ago
  36. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 14 years ago
  37. 00f2f97 Doc and docstring nits. by Raymond Hettinger · 14 years ago
  38. cc03858 Documentation nits. by Raymond Hettinger · 14 years ago
  39. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 14 years ago
  40. 5e20bab Neaten-up a bit. by Raymond Hettinger · 14 years ago
  41. 234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. by Nick Coghlan · 14 years ago
  42. b10089e Remove spurious space that was breaking Vim’s reST highlighting. by Éric Araujo · 14 years ago
  43. 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 14 years ago
  44. c6ecb01 Fix wrapper/wrapped typo (with Raymond’s blessing) by Éric Araujo · 14 years ago
  45. 02566ec Adopt more descriptive attribute names as suggested on python-dev. by Raymond Hettinger · 14 years ago
  46. 3fccfcb Minor rewording to docs for the lru_cache decorator by Raymond Hettinger · 14 years ago
  47. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 14 years ago
  48. 9e25701 Markup nits. by Georg Brandl · 14 years ago
  49. 9887683 Document and test the resolution of issue 3445 (tolerate missing attributes in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper) by Nick Coghlan · 14 years ago
  50. 632a0c1 Remove some lingering remnants of the short-lived functools.lfu_cache by Nick Coghlan · 14 years ago
  51. cca6531 use 3 space indents by Benjamin Peterson · 14 years ago
  52. 560f764 Issue #8814: function annotations (the `__annotations__` attribute) by Antoine Pitrou · 14 years ago
  53. c8dc62d Add example applications for the LRU and LFU cache docs. by Raymond Hettinger · 14 years ago
  54. 2e7346a Re-commit r83327 now that the release is done. by Georg Brandl · 14 years ago
  55. 014e0ca Revert r83327. This will have to wait until after the alpha1 release. by Georg Brandl · 14 years ago
  56. 9e46ef8 Add functools.lfu_cache() and functools.lru_cache(). by Raymond Hettinger · 14 years ago
  57. 8a1caa2 #6522: add a "decorator" directive to explicitly document decorators, and use it in a few places. by Georg Brandl · 14 years ago
  58. 08bf91c Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-79608,79622,79717,79820,79822,79828,79862,79875,79923-79924,79941-79943,79945,79947,79951-79952 via svnmerge from by Benjamin Peterson · 14 years ago
  59. c50846a Forward port total_ordering() and cmp_to_key(). by Raymond Hettinger · 14 years ago
  60. 036490d More conversion to new-style optional args. by Georg Brandl · 15 years ago
  61. 58f9e4f Remove duplicated reduce() entry. by Georg Brandl · 16 years ago
  62. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 16 years ago
  63. d8654cf Merged revisions 59259-59274 via svnmerge from by Christian Heimes · 17 years ago
  64. 6911e3c Convert all print statements in the docs. by Georg Brandl · 17 years ago
  65. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  66. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  67. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago