summaryrefslogtreecommitdiff
path: root/Modules/_functoolsmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-...Miss Islington (bot)2019-04-201-4/+3
* lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-1179...Miss Islington (bot)2019-02-081-4/+25
* Consistently move the misses update to just before the user function call (GH...Miss Islington (bot)2019-01-311-3/+5
* bpo-35780: Fix errors in lru_cache() C code (GH-11623) (GH-11682)Miss Islington (bot)2019-01-261-84/+188
* bpo-32422: Reduce lru_cache memory usage (GH-5008)INADA Naoki2017-12-261-26/+6
* bpo-31497: Add private helper _PyType_Name(). (#3630)Serhiy Storchaka2017-09-171-4/+3
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-0/+2
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-241-1/+6
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-8/+1
* Simplify partial.__new__. (#813)Serhiy Storchaka2017-03-251-8/+2
* bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords ar...Michael Seifert2017-03-151-1/+4
* bpo-29735: Optimize partial_call(): avoid tuple (#516)Victor Stinner2017-03-141-35/+80
* Document why functools.partial() must copy kwargs (#253)Victor Stinner2017-02-231-0/+3
* bpo-29532: Altering a kwarg dictionary passed to functools.partial() (#190)Serhiy Storchaka2017-02-201-1/+4
* Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-22/+36
|\
| * Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-22/+36
| |\
| | * Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-22/+36
| * | Issue #29203: functools.lru_cache() now respects PEP 468Raymond Hettinger2017-01-081-31/+18
* | | Backed out changeset ea064ff3c10fRaymond Hettinger2017-01-091-6/+0
* | | Sync-up lru_cache() C code with space saving feature in the Python version.Raymond Hettinger2017-01-081-0/+6
* | | Complete the merge for issue #29203Raymond Hettinger2017-01-081-31/+18
* | | Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-5/+5
* | | Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
|/ /
* | Merge 3.6 (issue #28653)Yury Selivanov2016-11-091-2/+6
|\ \ | |/
| * Issue #28653: Fix a refleak in functools.lru_cache.Yury Selivanov2016-11-091-2/+6
* | Issue #27137: align Python & C implementations of functools.partialNick Coghlan2016-09-101-1/+1
* | Issue #27809: partial_call() uses fast call for positional argsVictor Stinner2016-08-231-12/+28
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-1/+1
* | keyobject_richcompare() now uses fast callVictor Stinner2016-08-191-11/+7
|/
* Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-121-17/+22
* Issue #26200: Restored more safe usages of Py_SETREF.Serhiy Storchaka2016-04-111-3/+3
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-4/+4
* Issue #25945: Fixed bugs in functools.partial.Serhiy Storchaka2016-02-021-60/+68
* Issue #25447: Copying the lru_cache() wrapper object now always works,Serhiy Storchaka2015-12-281-0/+16
* Issue #25447: The lru_cache() wrapper objects now can be copied and pickledSerhiy Storchaka2015-10-241-0/+7
* Issue #24483: C implementation of functools.lru_cache() now calculates key'sSerhiy Storchaka2015-10-021-6/+20
* Issue #14373: Fixed segmentation fault when gc.collect() is called duringSerhiy Storchaka2015-07-251-5/+6
* Issue #14373: C implementation of functools.lru_cache() now can be used withSerhiy Storchaka2015-06-081-1/+11
* Backed out changeset: b0a0b9b59012Serhiy Storchaka2015-05-241-1/+546
* Backed out changeset 57776eee74f2Larry Hastings2015-05-231-546/+1
* Issue #14373: Added C implementation of functools.lru_cache(). Based onSerhiy Storchaka2015-05-231-1/+546
* merge 3.4Benjamin Peterson2015-05-091-2/+11
|\
| * ensure .keywords is always a dictBenjamin Peterson2015-05-091-9/+5
* | Issue #7830: Flatten nested functools.partial.Alexander Belopolsky2015-03-011-7/+48
|/
* Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+3
|\
| * Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+3
* | use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-191-37/+1
* | Fix nit (make spelling consistent in prototype)Raymond Hettinger2011-04-091-1/+1
* | implement tp_clearBenjamin Peterson2011-04-051-1/+10
* | Issue #11707: Fix compilation errors with Visual StudioVictor Stinner2011-04-051-6/+8