Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #24314: Fix doc links for general attributes like __name__, __dict__ | Martin Panter | 2016-06-18 | 1 | -1/+1 |
| | |||||
* | Issue #24136: Document generalized unpacking, PEP 448 | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | | | | Based on patches by Konstantin Molchanov and Neil Girdhar. | ||||
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+1 |
| | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs | Berker Peksag | 2016-04-18 | 1 | -4/+4 |
| | | | | Patch by Xiang Zhang. | ||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -3/+3 |
| | | | | to SilentGhost for the patch. | ||||
* | Issue #23049: Pure python equivalent shouldn't imply more exactitude than ↵ | Raymond Hettinger | 2014-12-17 | 1 | -1/+1 |
| | | | | is really there. | ||||
* | Issue 22830: Clarify docs for functools.cmp_to_key(). | Raymond Hettinger | 2014-11-10 | 1 | -4/+5 |
| | |||||
* | Fixing broken links in doc, part 3: the rest | Georg Brandl | 2014-10-29 | 1 | -1/+1 |
| | |||||
* | #21928: clarify functools.wraps docs. | Ezio Melotti | 2014-08-05 | 1 | -3/+4 |
| | |||||
* | make partialmethod example work (closes #21105) | Benjamin Peterson | 2014-03-30 | 1 | -0/+2 |
| | |||||
* | Fix functools.partialmethod docs and __all__ | Nick Coghlan | 2013-11-04 | 1 | -2/+2 |
| | |||||
* | Issue #4331: Added functools.partialmethod | Nick Coghlan | 2013-11-03 | 1 | -1/+42 |
| | | | | Initial patch by Alon Horev | ||||
* | merge | Raymond Hettinger | 2013-10-12 | 1 | -0/+12 |
|\ | |||||
| * | Issue #19202: Add cross-reference and a rough code equivalent | Raymond Hettinger | 2013-10-12 | 1 | -0/+12 |
| | | |||||
* | | Close #10042: functools.total_ordering now handles NotImplemented | Nick Coghlan | 2013-10-01 | 1 | -0/+19 |
| | | | | | | | | (Patch by Katie Miller) | ||||
* | | Close issue 17482: don't overwrite __wrapped__ | Nick Coghlan | 2013-07-15 | 1 | -2/+7 |
| | | |||||
* | | moved the single-dispatch generic function definitions to the glossary | Łukasz Langa | 2013-06-07 | 1 | -6/+2 |
| | | |||||
* | | Add reference implementation for PEP 443 | Łukasz Langa | 2013-06-05 | 1 | -0/+110 |
|/ | | | | PEP accepted: http://mail.python.org/pipermail/python-dev/2013-June/126734.html | ||||
* | Clean-up lru_cache examples. The print() not is needed. Set maxsize to a ↵ | Raymond Hettinger | 2013-04-07 | 1 | -5/+5 |
| | | | | power of two. | ||||
* | Add usage note. | Raymond Hettinger | 2012-06-04 | 1 | -2/+3 |
| | |||||
* | Minor change to default lru size. Set default to a power of two. | Raymond Hettinger | 2012-05-20 | 1 | -1/+1 |
| | |||||
* | merge with 3.2 | Georg Brandl | 2012-01-25 | 1 | -3/+3 |
|\ | |||||
| * | #13852: some small doc fixes. | Georg Brandl | 2012-01-25 | 1 | -3/+3 |
| | | |||||
* | | merge from 3.2 | Georg Brandl | 2012-01-23 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #13816: fix two minor style issues. Thanks to Justin Wehnes for the patch. | Georg Brandl | 2012-01-23 | 1 | -1/+1 |
| | | |||||
* | | #13695: merge with 3.2. | Ezio Melotti | 2012-01-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #13695: fix a couple of typos in the doc. | Ezio Melotti | 2012-01-16 | 1 | -1/+1 |
| | | |||||
* | | Issue 13227: Option to make the lru_cache() type specific (suggested by ↵ | Raymond Hettinger | 2011-10-20 | 1 | -3/+10 |
|/ | | | | Andrew Koenig). | ||||
* | Missed two source links | Raymond Hettinger | 2011-01-10 | 1 | -5/+3 |
| | |||||
* | Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. | Raymond Hettinger | 2010-12-01 | 1 | -6/+23 |
| | |||||
* | Doc and docstring nits. | Raymond Hettinger | 2010-12-01 | 1 | -0/+4 |
| | |||||
* | Documentation nits. | Raymond Hettinger | 2010-11-30 | 1 | -3/+3 |
| | |||||
* | Add example, tighten text, and minor clean-ups. | Raymond Hettinger | 2010-11-30 | 1 | -23/+35 |
| | |||||
* | Neaten-up a bit. | Raymond Hettinger | 2010-11-30 | 1 | -3/+3 |
| | |||||
* | Issue 10586: change the new functools.lru_cache implementation to expose the ↵ | Nick Coghlan | 2010-11-30 | 1 | -4/+10 |
| | | | | maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. | ||||
* | Remove spurious space that was breaking Vim’s reST highlighting. | Éric Araujo | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Provide links to Python source where the code is short, readable and | Éric Araujo | 2010-11-16 | 1 | -0/+5 |
| | | | | | informative adjunct to the docs. Forward-port of Raymond's r86225 and r86245 using the new source reST role added in #10334. | ||||
* | Fix wrapper/wrapped typo (with Raymond’s blessing) | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
| | |||||
* | Adopt more descriptive attribute names as suggested on python-dev. | Raymond Hettinger | 2010-09-04 | 1 | -3/+3 |
| | |||||
* | Minor rewording to docs for the lru_cache decorator | Raymond Hettinger | 2010-08-17 | 1 | -3/+3 |
| | |||||
* | Consistency check for versionadded/changed directives. | Georg Brandl | 2010-08-17 | 1 | -0/+3 |
| | |||||
* | Markup nits. | Georg Brandl | 2010-08-17 | 1 | -3/+4 |
| | |||||
* | Document and test the resolution of issue 3445 (tolerate missing attributes ↵ | Nick Coghlan | 2010-08-17 | 1 | -0/+23 |
| | | | | 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) | ||||
* | Remove some lingering remnants of the short-lived functools.lfu_cache | Nick Coghlan | 2010-08-17 | 1 | -27/+0 |
| | |||||
* | use 3 space indents | Benjamin Peterson | 2010-08-09 | 1 | -17/+16 |
| | |||||
* | Issue #8814: function annotations (the `__annotations__` attribute) | Antoine Pitrou | 2010-08-04 | 1 | -3/+3 |
| | | | | | are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole. | ||||
* | Add example applications for the LRU and LFU cache docs. | Raymond Hettinger | 2010-08-02 | 1 | -2/+5 |
| | |||||
* | Re-commit r83327 now that the release is done. | Georg Brandl | 2010-07-31 | 1 | -0/+51 |
| | |||||
* | Revert r83327. This will have to wait until after the alpha1 release. | Georg Brandl | 2010-07-31 | 1 | -51/+0 |
| | |||||
* | Add functools.lfu_cache() and functools.lru_cache(). | Raymond Hettinger | 2010-07-31 | 1 | -0/+51 |
| |