summaryrefslogtreecommitdiff
path: root/Objects/dictobject.c
Commit message (Expand)AuthorAgeFilesLines
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Issue 10221: Improve error message for dict.pop().Raymond Hettinger2010-10-301-2/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-2206/+2206
* Issue #8404: Fix set operations on dictionary views.Alexandre Vassalotti2010-05-041-3/+6
* #8030: more docstring fix for builtin types.Ezio Melotti2010-02-281-2/+2
* #8030: make builtin type docstrings more consistent: use "iterable" instead o...Georg Brandl2010-02-281-2/+2
* Fixed repr of dictionary views.Alexandre Vassalotti2010-01-121-1/+2
* Issue #1967: Backport dictionary views.Alexandre Vassalotti2010-01-111-0/+505
* clarifyBenjamin Peterson2009-07-251-1/+1
* must use _PyThreadState_Current so it isn't checked for NULL #6530Benjamin Peterson2009-07-211-4/+6
* use the offical apiBenjamin Peterson2009-06-041-1/+1
* plug ref leakBenjamin Peterson2009-05-271-4/+7
* correctly handle descrs with __missing__Benjamin Peterson2009-05-271-5/+6
* The tracking statistics were actually too pessimisticAntoine Pitrou2009-03-231-0/+1
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-231-1/+81
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-011-8/+17
* Punctuation fix; expand dict.update docstring to be clearerAndrew M. Kuchling2008-10-041-4/+6
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-111-0/+4
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-1/+1
* Issue 3230: Do not the set specific size macro.Raymond Hettinger2008-06-281-1/+1
* Corrected inconsistencies in sizeof tests and addressed issue pointedRobert Schuppenies2008-06-261-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-39/+39
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-011-1/+1
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-011-0/+15
* Renamed PyString to PyBytesChristian Heimes2008-05-261-39/+39
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-2/+2
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-8/+4
* Fix tabs.Georg Brandl2008-03-251-1/+1
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-3/+6
* Add py3k warnings for object, type, cell and dict comparisons. This should re...Steven Bethard2008-03-181-1/+7
* Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal.Christian Heimes2008-02-241-2/+4
* dict.copy() rises from the ashes. Revert r60687.Raymond Hettinger2008-02-121-4/+0
* Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ...Raymond Hettinger2008-02-091-0/+4
* Use prefix decrementChristian Heimes2008-02-081-2/+2
* Deallocate content of the dict free list on interpreter shutdownChristian Heimes2008-02-081-0/+12
* Added some statistics code to dict and list object code. I wanted to test how...Christian Heimes2008-02-071-0/+25
* Unified naming convention for free lists and their limits. All free listsChristian Heimes2008-02-061-7/+9
* Changes 54857 and 54840 broke code and were reverted in Py2.5 just beforeRaymond Hettinger2008-01-251-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-4/+4
* Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.Raymond Hettinger2007-12-181-0/+17
* Spaces vs. Tabs.Georg Brandl2007-11-291-4/+4
* Fix bug #1517, a segfault in lookdict().Guido van Rossum2007-11-291-0/+4
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-8/+1
* Optimize common case for dict.fromkeys().Raymond Hettinger2007-11-091-10/+15
* Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ...Raymond Hettinger2007-11-071-0/+19
* Remove file-level typedefs that were inconsistently used throughout the file.Brett Cannon2007-10-101-105/+103
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-1/+12
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-12/+8
* Whitespace cleanupNeal Norwitz2007-05-231-1/+1
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-2/+12