1. 3874128 Issue #25945: Fixed bugs in functools.partial. by Serhiy Storchaka · 9 years ago
  2. e4d65e3 Issue #25447: Copying the lru_cache() wrapper object now always works, by Serhiy Storchaka · 9 years ago
  3. 45120f2 Issue #25447: The lru_cache() wrapper objects now can be copied and pickled by Serhiy Storchaka · 9 years ago
  4. 9b93c6b Issue #25137: Add a note to whatsnew/3.5.rst for nested functools.partial calls by Berker Peksag · 9 years ago
  5. 77a8cd6 Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses. by Yury Selivanov · 9 years ago
  6. 391af75 Issue #14373: Other attempt to fix threaded test for lru_cache(). by Serhiy Storchaka · 9 years ago
  7. e7070f0 Issue #14373: C implementation of functools.lru_cache() now can be used with by Serhiy Storchaka · 9 years ago
  8. 77cb197 Issue #14373: Fixed threaded test for lru_cache(). Added new threaded test. by Serhiy Storchaka · 9 years ago
  9. bf2b3b7 Use test.support.start_threads() in threaded lru_cache tests. by Serhiy Storchaka · 9 years ago
  10. 46c5611 Backed out changeset: b0a0b9b59012 by Serhiy Storchaka · 9 years ago
  11. 8252cc9 Backed out changeset 57776eee74f2 by Larry Hastings · 9 years ago
  12. 1c858c3 Issue #14373: Added C implementation of functools.lru_cache(). Based on by Serhiy Storchaka · 9 years ago
  13. dae2ef1 merge 3.4 by Benjamin Peterson · 9 years ago
  14. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  15. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  16. e49af34 Issue #7830: Flatten nested functools.partial. by Alexander Belopolsky · 10 years ago
  17. 90caf01 Issue #19681: Test the repr of partial with more than one keyword argument. by Serhiy Storchaka · 10 years ago
  18. 0aa74e1 Issue #19681: Test the repr of partial with more than one keyword argument. by Serhiy Storchaka · 10 years ago
  19. 697a526 Issue #23132: Improve performance and introspection support of comparison by Serhiy Storchaka · 10 years ago
  20. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  21. 4d58897 Issue 22184: Early detection and reporting of missing lru_cache parameters by Raymond Hettinger · 10 years ago
  22. b12cb6a Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and by Serhiy Storchaka · 11 years ago
  23. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  24. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  25. d062892 Issue #19681: Apply a quick and minimal band-aid. by Christian Heimes · 11 years ago
  26. f4cb48a Issue #4331: Added functools.partialmethod by Nick Coghlan · 11 years ago
  27. f05d981 Close #10042: functools.total_ordering now handles NotImplemented by Nick Coghlan · 11 years ago
  28. 24c05bc Close issue 17482: don't overwrite __wrapped__ by Nick Coghlan · 11 years ago
  29. 3720c77 Issue #18244: Adopt C3-based linearization in functools.singledispatch for improved ABC support by Łukasz Langa · 11 years ago
  30. 7f7a67a Fixed #18150: duplicate test inside TestSingleDispatch by Łukasz Langa · 11 years ago
  31. 6f69251 Add reference implementation for PEP 443 by Łukasz Langa · 11 years ago
  32. 6c2078d merge by Raymond Hettinger · 11 years ago
  33. 0392342 Add test for RLock in the lru_cache(). by Raymond Hettinger · 11 years ago
  34. ca4220b Issue #17122: Fix and cleanup test_functools.py. by Serhiy Storchaka · 12 years ago
  35. b6a5340 Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 12 years ago
  36. 1d0bb9c Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 12 years ago
  37. 19c4e0d Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 12 years ago
  38. a4fdd59 Fix skip conditions in some docstings tests. by Serhiy Storchaka · 12 years ago
  39. 8e0ae2a Fix skip conditions in some docstings tests. by Serhiy Storchaka · 12 years ago
  40. f011881 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  41. 26f1166 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  42. 9d0add0 Issue #17041: Fix testing when Python is configured with the by Serhiy Storchaka · 12 years ago
  43. 3354327 Fix whitespace. by Antoine Pitrou · 12 years ago
  44. b5b3714 Issue #12428: Add a pure Python implementation of functools.partial(). by Antoine Pitrou · 12 years ago
  45. ff7f64c Issue #13544: Add __qualname__ to functools.WRAPPER_ASSIGNMENTS. by Meador Inge · 13 years ago
  46. cd9fdfd Issue 13227: Option to make the lru_cache() type specific (suggested by Andrew Koenig). by Raymond Hettinger · 13 years ago
  47. d8886fc Merge by Raymond Hettinger · 13 years ago
  48. 4b779b3 Issue 13177: Make tracebacks more readable by avoiding chained exceptions in the lru_cache. by Raymond Hettinger · 13 years ago
  49. e7a2430 Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable. by Raymond Hettinger · 13 years ago
  50. 003be52 Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable. by Raymond Hettinger · 13 years ago
  51. 7ab9e22 Issue #11707: Fast C version of functools.cmp_to_key() by Raymond Hettinger · 13 years ago
  52. 23f9fc3 Issue #10042: Fixed the total_ordering decorator to handle cross-type by Raymond Hettinger · 14 years ago
  53. 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 14 years ago
  54. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 14 years ago
  55. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 14 years ago
  56. 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
  57. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  58. 02566ec Adopt more descriptive attribute names as suggested on python-dev. by Raymond Hettinger · 14 years ago
  59. 9c2930e run total_ordering() tests, and fix the function (default comparisons shouldn't be considered) by Benjamin Peterson · 14 years ago
  60. 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
  61. e29e6bf Issue #665761: functools.reduce() will no longer mask exceptions other by Alexander Belopolsky · 14 years ago
  62. f309828 Remove the lfu_cache. Add more tests. by Raymond Hettinger · 14 years ago
  63. 0f56e90 Support cache sizes. by Raymond Hettinger · 14 years ago
  64. 560f764 Issue #8814: function annotations (the `__annotations__` attribute) by Antoine Pitrou · 14 years ago
  65. 2e7346a Re-commit r83327 now that the release is done. by Georg Brandl · 14 years ago
  66. 014e0ca Revert r83327. This will have to wait until after the alpha1 release. by Georg Brandl · 14 years ago
  67. 9e46ef8 Add functools.lfu_cache() and functools.lru_cache(). by Raymond Hettinger · 14 years ago
  68. 42ebee3 Merged revisions 79944 via svnmerge from by Benjamin Peterson · 14 years ago
  69. c50846a Forward port total_ordering() and cmp_to_key(). by Raymond Hettinger · 14 years ago
  70. 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 14 years ago
  71. 378c0cf Merged revisions 78351 via svnmerge from by R. David Murray · 15 years ago
  72. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  73. e0cbd69 Merged revisions 70931 via svnmerge from by Jack Diederich · 15 years ago
  74. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  75. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  76. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  77. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  78. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  79. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  80. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  81. 0919a1a Part of SF patch #1513870 (the still relevant part) -- add reduce() to by Guido van Rossum · 18 years ago
  82. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  83. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago[Renamed (97%) from Lib/test/test_functional.py]
  84. eba28be Whitespace normalization. by Tim Peters · 19 years ago
  85. 26e512a Test partial() with bound/unbound methods. by Raymond Hettinger · 19 years ago
  86. c8b6d1b Make functional.partial() more closely match the spec by emulating by Raymond Hettinger · 19 years ago
  87. 9c323f8 SF patch #941881: PEP 309 Implementation (Partial Function Application). by Raymond Hettinger · 20 years ago