Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27478) | Miss Islington (bot) | 2021-07-30 | 1 | -1/+1 |
| | | | | | (cherry picked from commit be42c06bb01206209430f3ac08b72643dc7cad1c) Co-authored-by: Noah Kantrowitz <noah@coderanger.net> | ||||
* | bpo-44310: Note that lru_cache keep references to both arguments and ↵ | Miss Islington (bot) | 2021-06-14 | 1 | -6/+9 |
| | | | | results (GH-26715) (GH-26716) | ||||
* | bpo-42781: Document the mechanics of cached_property from a user viewpoint ↵ | Raymond Hettinger | 2021-01-01 | 1 | -4/+14 |
| | | | | (GH-24031) | ||||
* | bpo-42127: Document effect of cached_property on key-sharing dictionaries ↵ | Raymond Hettinger | 2020-10-25 | 1 | -9/+24 |
| | | | | (GH-22930) | ||||
* | bpo-41905: Add abc.update_abstractmethods() (GH-22485) | Ben Avrahami | 2020-10-06 | 1 | -0/+7 |
| | | | | This function recomputes `cls.__abstractmethods__`. Also update `@dataclass` to use it. | ||||
* | bpo-17005: Move topological sort functionality to its own module (GH-20558) | Pablo Galindo | 2020-05-31 | 1 | -195/+1 |
| | | | | | | The topological sort functionality that was introduced initially in the functools module has been moved to a new graphlib module to better accommodate the new tools and keep the original scope of the functools module. | ||||
* | Fix Wikipedia link (GH-20031) | Allen Guo | 2020-05-12 | 1 | -5/+5 |
| | |||||
* | bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019) | Raymond Hettinger | 2020-05-12 | 1 | -0/+26 |
| | |||||
* | Remove outdated and confusing advice about setting maxsize (GH-19889) | Raymond Hettinger | 2020-05-03 | 1 | -2/+1 |
| | |||||
* | bpo-17005: Minor improvements to the documentation of TopologicalSorter ↵ | Pablo Galindo | 2020-01-23 | 1 | -75/+67 |
| | | | | (GH-18155) | ||||
* | bpo-17005: Add a class to perform topological sorting to the standard ↵ | Pablo Galindo | 2020-01-23 | 1 | -0/+208 |
| | | | | | library (GH-11583) Co-Authored-By: Tim Peters <tim.peters@gmail.com> | ||||
* | bpo-21767: explicitly mention abc support in functools.singledispatch docs ↵ | Batuhan Taşkaya | 2019-11-19 | 1 | -0/+14 |
| | | | | (#17171) | ||||
* | bpo-38565: add new cache_parameters method for lru_cache (GH-16916) | Manjusaka | 2019-11-12 | 1 | -0/+8 |
| | |||||
* | Do not use explicit inheritance from object in the documentation. (GH-13936) | Serhiy Storchaka | 2019-06-10 | 1 | -1/+1 |
| | |||||
* | Use more PEP 570 syntax in the documentation. (GH-13720) | Serhiy Storchaka | 2019-06-01 | 1 | -1/+1 |
| | |||||
* | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 1 | -2/+2 |
| | |||||
* | bpo-36772 Allow lru_cache to be used as decorator without making a function ↵ | Raymond Hettinger | 2019-05-26 | 1 | -1/+14 |
| | | | | call (GH-13048) | ||||
* | bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580) | Inada Naoki | 2019-03-27 | 1 | -0/+3 |
| | |||||
* | bpo-35300: Add usage note to the lru_cache() docs (GH-10707) | Raymond Hettinger | 2018-11-26 | 1 | -0/+5 |
| | | | https://bugs.python.org/issue35300 | ||||
* | bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH-9809) | Andrei Petre | 2018-10-23 | 1 | -5/+6 |
| | |||||
* | Use dict unpacking in functools.partial() docs (GH-9412) | Sergey Fedoseev | 2018-10-19 | 1 | -2/+1 |
| | |||||
* | Fix name of argument in docs for functools.reduce(). (#9634) | Brendan Jurd | 2018-10-01 | 1 | -6/+6 |
| | |||||
* | Note that distinct argument patterns can be cached separately (GH-9298) | Raymond Hettinger | 2018-09-14 | 1 | -0/+5 |
| | |||||
* | bpo-21145: Add cached_property decorator in functools (#6982) | Carl Meyer | 2018-08-28 | 1 | -0/+33 |
| | | | | | | Robust caching of calculated properties is harder than it looks at first glance, so add a solid, well-tested implementation to the standard library. | ||||
* | DOC: In `reduce`, refer to `accumulate` (GH-7930) | Gerrit Holl | 2018-07-04 | 1 | -0/+2 |
| | |||||
* | bpo-32380: Create functools.singledispatchmethod (#6306) | Ethan Smith | 2018-05-26 | 1 | -0/+46 |
| | |||||
* | bpo-32227: functools.singledispatch supports registering via type ↵ | Łukasz Langa | 2017-12-11 | 1 | -7/+21 |
| | | | | annotations (#4733) | ||||
* | bpo-31567: add or fix decorator markup in docs (#3959) | Daisuke Miyakawa | 2017-10-12 | 1 | -2/+2 |
| | |||||
* | Issue #19795: Improved more markups of True/False. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| | |||||
* | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| | |||||
* | 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 |
| |