Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19681: Test the repr of partial with more than one keyword argument. | Serhiy Storchaka | 2015-02-15 | 1 | -7/+9 |
| | |||||
* | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -2/+3 |
| | |||||
* | Issue 22184: Early detection and reporting of missing lru_cache parameters | Raymond Hettinger | 2014-08-12 | 1 | -0/+7 |
| | |||||
* | Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and | Serhiy Storchaka | 2013-12-08 | 1 | -1/+2 |
|\ | | | | | | | test_statistics when python is run with -OO. | ||||
* \ | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -14/+15 |
|\ \ | |/ | |||||
| * | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -5/+5 |
| | | |||||
* | | Issue #19681: Apply a quick and minimal band-aid. | Christian Heimes | 2013-11-22 | 1 | -1/+2 |
| | | | | | | | | | | The flaky buildbots make it hard to detect real issue. This is just a temporary fix until we agree on a permanent solution. | ||||
* | | Issue #4331: Added functools.partialmethod | Nick Coghlan | 2013-11-03 | 1 | -0/+116 |
| | | | | | | | | Initial patch by Alon Horev | ||||
* | | Close #10042: functools.total_ordering now handles NotImplemented | Nick Coghlan | 2013-10-01 | 1 | -7/+101 |
| | | | | | | | | (Patch by Katie Miller) | ||||
* | | Close issue 17482: don't overwrite __wrapped__ | Nick Coghlan | 2013-07-15 | 1 | -3/+11 |
| | | |||||
* | | Issue #18244: Adopt C3-based linearization in functools.singledispatch for ↵ | Łukasz Langa | 2013-07-01 | 1 | -21/+153 |
| | | | | | | | | improved ABC support | ||||
* | | Fixed #18150: duplicate test inside TestSingleDispatch | Łukasz Langa | 2013-06-07 | 1 | -19/+14 |
| | | | | | | | | Thanks to Vajrasky Kok for the patch | ||||
* | | Add reference implementation for PEP 443 | Łukasz Langa | 2013-06-05 | 1 | -3/+369 |
| | | | | | | | | PEP accepted: http://mail.python.org/pipermail/python-dev/2013-June/126734.html | ||||
* | | merge | Raymond Hettinger | 2013-03-04 | 1 | -0/+25 |
|\ \ | |/ | |||||
| * | Add test for RLock in the lru_cache(). | Raymond Hettinger | 2013-03-04 | 1 | -0/+25 |
| | | |||||
* | | Issue #17122: Fix and cleanup test_functools.py. | Serhiy Storchaka | 2013-02-05 | 1 | -50/+21 |
| | | |||||
* | | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple | Serhiy Storchaka | 2013-02-04 | 1 | -2/+20 |
|\ \ | |/ | | | | | parses nested mutating sequence. | ||||
| * | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple | Serhiy Storchaka | 2013-02-04 | 1 | -0/+20 |
| |\ | | | | | | | | | | parses nested mutating sequence. | ||||
| | * | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple | Serhiy Storchaka | 2013-02-04 | 1 | -0/+20 |
| | | | | | | | | | | | | parses nested mutating sequence. | ||||
| * | | Fix skip conditions in some docstings tests. | Serhiy Storchaka | 2013-01-28 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | Fix skip conditions in some docstings tests. | Serhiy Storchaka | 2013-01-28 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -0/+1 |
|\ \ \ | |/ / | | | | | | | --without-doc-strings. | ||||
| * | | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -0/+1 |
| |\ \ | | |/ | | | | | | | --without-doc-strings. | ||||
| | * | Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -0/+1 |
| | | | | | | | | | | | | --without-doc-strings. | ||||
* | | | Fix whitespace. | Antoine Pitrou | 2012-11-13 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #12428: Add a pure Python implementation of functools.partial(). | Antoine Pitrou | 2012-11-13 | 1 | -72/+136 |
|/ / | | | | | | | Patch by Brian Thorne. | ||||
* | | Issue #13544: Add __qualname__ to functools.WRAPPER_ASSIGNMENTS. | Meador Inge | 2011-12-12 | 1 | -3/+9 |
| | | | | | | | | Patch by Filip Gruszczyński. | ||||
* | | Issue 13227: Option to make the lru_cache() type specific (suggested by ↵ | Raymond Hettinger | 2011-10-20 | 1 | -0/+16 |
| | | | | | | | | Andrew Koenig). | ||||
* | | Merge | Raymond Hettinger | 2011-10-16 | 1 | -0/+16 |
|\ \ | |/ | |||||
| * | Issue 13177: Make tracebacks more readable by avoiding chained exceptions in ↵ | Raymond Hettinger | 2011-10-16 | 1 | -0/+16 |
| | | | | | | | | the lru_cache. | ||||
* | | Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable. | Raymond Hettinger | 2011-05-03 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable. | Raymond Hettinger | 2011-05-03 | 1 | -1/+4 |
| | | |||||
* | | Issue #11707: Fast C version of functools.cmp_to_key() | Raymond Hettinger | 2011-04-05 | 1 | -1/+65 |
|/ | |||||
* | Issue #10042: Fixed the total_ordering decorator to handle cross-type | Raymond Hettinger | 2011-01-08 | 1 | -0/+24 |
| | | | | comparisons that could lead to infinite recursion. | ||||
* | Issue #4113: Added custom __repr__ method to functools.partial. | Alexander Belopolsky | 2010-12-01 | 1 | -0/+29 |
| | |||||
* | Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. | Raymond Hettinger | 2010-12-01 | 1 | -0/+14 |
| | |||||
* | Add example, tighten text, and minor clean-ups. | Raymond Hettinger | 2010-11-30 | 1 | -8/+8 |
| | |||||
* | Issue 10586: change the new functools.lru_cache implementation to expose the ↵ | Nick Coghlan | 2010-11-30 | 1 | -8/+36 |
| | | | | maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. | ||||
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -33/+33 |
| | |||||
* | Adopt more descriptive attribute names as suggested on python-dev. | Raymond Hettinger | 2010-09-04 | 1 | -9/+9 |
| | |||||
* | run total_ordering() tests, and fix the function (default comparisons ↵ | Benjamin Peterson | 2010-08-23 | 1 | -1/+2 |
| | | | | shouldn't be considered) | ||||
* | Document and test the resolution of issue 3445 (tolerate missing attributes ↵ | Nick Coghlan | 2010-08-17 | 1 | -0/+29 |
| | | | | 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) | ||||
* | Issue #665761: functools.reduce() will no longer mask exceptions other | Alexander Belopolsky | 2010-08-16 | 1 | -6/+19 |
| | | | | | than TypeError raised by the iterator argument. Also added a test to check that zip() already behaves similarly. | ||||
* | Remove the lfu_cache. Add more tests. | Raymond Hettinger | 2010-08-15 | 1 | -50/+15 |
| | |||||
* | Support cache sizes. | Raymond Hettinger | 2010-08-14 | 1 | -0/+48 |
| | |||||
* | Issue #8814: function annotations (the `__annotations__` attribute) | Antoine Pitrou | 2010-08-04 | 1 | -2/+6 |
| | | | | | are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole. | ||||
* | Re-commit r83327 now that the release is done. | Georg Brandl | 2010-07-31 | 1 | -1/+47 |
| | |||||
* | Revert r83327. This will have to wait until after the alpha1 release. | Georg Brandl | 2010-07-31 | 1 | -47/+1 |
| | |||||
* | Add functools.lfu_cache() and functools.lru_cache(). | Raymond Hettinger | 2010-07-31 | 1 | -1/+47 |
| | |||||
* | Merged revisions 79944 via svnmerge from | Benjamin Peterson | 2010-04-11 | 1 | -0/+5 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79944 | benjamin.peterson | 2010-04-10 20:40:32 -0500 (Sat, 10 Apr 2010) | 1 line add test for class with no operations defined ........ |