summaryrefslogtreecommitdiffstats
path: root/Modules/_collectionsmodule.c
Commit message (Expand)AuthorAgeFilesLines
* dict.copy() rises from the ashes. Revert r60687.Raymond Hettinger2008-02-121-12/+2
* Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ...Raymond Hettinger2008-02-091-2/+12
* issue 2045: Infinite recursion when printing a subclass of defaultdict,Amaury Forgeot d'Arc2008-02-081-1/+11
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-10/+10
* Fix bug 1604. deque.__init__() did not clear existing contents like list.__in...Raymond Hettinger2007-12-131-0/+1
* Use a freelist to speed-up block allocation and deallocation in collections.d...Raymond Hettinger2007-11-101-7/+27
* Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbo...Raymond Hettinger2007-10-101-10/+26
* Restore BEGIN/END THREADS macros which were squashed in the previous checkinRaymond Hettinger2007-10-051-5/+21
* dict could be NULL, so we need to XDECREF.Neal Norwitz2007-10-051-2/+2
* Add __asdict__() to NamedTuple and refine the docs.Raymond Hettinger2007-10-051-85/+101
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-1/+18
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-14/+10
* Fix another reincarnation of bug #1576657 in defaultdict.Georg Brandl2007-03-061-2/+6
* Prepare collections module for pure python code entries.Raymond Hettinger2007-02-281-0/+1366