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