summaryrefslogtreecommitdiffstats
path: root/Objects/dictobject.c
Commit message (Expand)AuthorAgeFilesLines
* Use new GC API.Neil Schemenauer2001-08-291-7/+6
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-50/+25
* Add PyDict_Merge(a, b, override):Guido van Rossum2001-08-101-2/+18
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-123/+107
* dict_update(): Generalize this method so {}.update() accepts anyBarry Warsaw2001-06-261-17/+70
* dict_repr: Reuse one of the int vars (minor code simplification).Tim Peters2001-06-161-3/+3
* SF bug 433228: repr(list) woes when len(list) big.Tim Peters2001-06-161-30/+68
* Store the mask instead of the size in dictobjects. The mask is moreTim Peters2001-06-041-23/+29
* lookdict: stop more insane core-dump mutating comparison cases. ShouldTim Peters2001-06-031-6/+31
* lookdict: Reduce obfuscating code duplication with a judicious goto.Tim Peters2001-06-031-25/+21
* Finish the dict->string coredump fix. Need sleep.Tim Peters2001-06-021-1/+1
* Coredumpers from Michael Hudson, mutating dicts while printing orTim Peters2001-06-021-7/+19
* dict_popitem(): Repaired last-second 2.1 comment, which misidentified theTim Peters2001-06-021-5/+8
* New collision resolution scheme: no polynomials, simpler, faster, lessTim Peters2001-06-021-163/+124
* Implement an old idea of Christian Tismer's: use polynomial divisionTim Peters2001-05-271-18/+72
* Patch #424335: Implement string_richcompare, remove string_compare.Martin v. Löwis2001-05-241-4/+3
* dictresize(): Rebuild small tables if there are any dummies, not just ifTim Peters2001-05-241-7/+11
* Jack Jansen hit a bug in the new dict code, reported on python-dev.Tim Peters2001-05-231-9/+28
* Remove unused variable.Fred Drake2001-05-221-1/+0
* SF patch #425242: Patch which "inlines" small dictionaries.Tim Peters2001-05-221-81/+145
* Bugfix candidate.Tim Peters2001-05-191-2/+3
* Speed dictresize by collapsing its two passes into one; the reason givenTim Peters2001-05-171-8/+9
* Aggressive reordering of dict comparisons. In case of collision, it standsTim Peters2001-05-131-30/+21
* Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask".Tim Peters2001-05-131-10/+2
* Restore dicts' tp_compare slot, and change dict_richcompare to say itTim Peters2001-05-101-15/+3
* Repair typo in comment.Tim Peters2001-05-101-1/+1
* SF bug #422121 Insecurities in dict comparison.Tim Peters2001-05-101-34/+95
* SF patch #421922: Implement rich comparison for dicts.Tim Peters2001-05-081-2/+72
* Mchael Hudson pointed out that the code for detecting changes inGuido van Rossum2001-05-021-4/+4
* Add experimental iterkeys(), itervalues(), iteritems() to dictGuido van Rossum2001-05-011-11/+85
* Mondo changes to the iterator stuff, without changing how Python codeGuido van Rossum2001-04-231-2/+21
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+103
* Oops. Removed dictiter_new decl that wasn't supposed to go in yet.Guido van Rossum2001-04-201-2/+0
* Implement, test and document "key in dict" and "key not in dict".Guido van Rossum2001-04-201-1/+35
* Tim pointed out a remaining vulnerability in popitem(): theGuido van Rossum2001-04-161-5/+6
* Tentative fix for a problem that Tim discovered at the last moment,Guido van Rossum2001-04-151-61/+110
* Make PyDict_Next safe to use for loops that merely modify the valuesTim Peters2001-03-211-8/+32
* Rich comparisons:Guido van Rossum2001-01-181-118/+45
* dict_update has two boundary conditions: a.update(a) and a.update({})Jeremy Hylton2001-01-031-2/+2
* Add long-overdue docstrings to dict methods.Tim Peters2000-12-131-11/+53
* Typo repair in comments. Fell for GregS's .popitem() poke.Tim Peters2000-12-131-2/+6
* Bring comments up to date (e.g., they still said the table had to beTim Peters2000-12-131-23/+40
* Add popitem() -- SF patch #102733.Guido van Rossum2000-12-121-0/+53
* Backing out my changes.Moshe Zadka2000-11-301-72/+0
* Added .first{item,value,key}() to dictionaries.Moshe Zadka2000-11-301-0/+72
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Slight performance hack that also avoids requiring the existence of threadFred Drake2000-08-311-12/+124
* Clear errors raised by PyObject_Compare() without losing any existingFred Drake2000-08-311-9/+44
* Barry's patch to implement the new setdefault() method.Guido van Rossum2000-08-081-0/+36
* Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,Thomas Wouters2000-07-221-1/+1