summaryrefslogtreecommitdiffstats
path: root/Modules/_functoolsmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-25/+41
| | | | | | | Fixed a crash when unpickle the functools.partial object with wrong state. Fixed a leak in failed functools.partial constructor. "args" and "keywords" attributes of functools.partial have now always types tuple and dict correspondingly.
* ensure .keywords is always a dictBenjamin Peterson2015-05-091-9/+5
|
* Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-3/+3
| | | | parses nested mutating sequence.
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
|
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-287/+287
|
* #5228: add pickle support to functools.partialJack Diederich2009-03-311-1/+48
|
* Copy reduce() to _functools so to have functools.reduce() not raise a warningBrett Cannon2008-08-091-0/+79
| | | | from usage under -3.
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and ↵Christian Heimes2007-12-191-1/+1
| | | | Py_REFCNT. Macros for b/w compatibility are available.
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
| | | | | backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT.
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-0/+277
Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.