- 0ab085c Changed the dict implementation to take "string shortcuts" only when by Tim Peters · 23 years ago
- b95ec09 Repair typo in comment. by Tim Peters · 23 years ago
- 25786c0 Make dictionary() a real constructor. Accepts at most one argument, "a by Tim Peters · 23 years ago
- e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
- e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
- 05ac6de Add PyDict_Merge(a, b, override): by Guido van Rossum · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 66a0d1d dict_update(): Generalize this method so {}.update() accepts any by Barry Warsaw · 23 years ago
- c605784 dict_repr: Reuse one of the int vars (minor code simplification). by Tim Peters · 23 years ago
- a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
- afb6ae8 Store the mask instead of the size in dictobjects. The mask is more by Tim Peters · 23 years ago
- 453163d lookdict: stop more insane core-dump mutating comparison cases. Should by Tim Peters · 23 years ago
- 7b5d0af lookdict: Reduce obfuscating code duplication with a judicious goto. by Tim Peters · 23 years ago
- 19b77cf Finish the dict->string coredump fix. Need sleep. Bugfix candidate. by Tim Peters · 23 years ago
- 23cf6be Coredumpers from Michael Hudson, mutating dicts while printing or by Tim Peters · 23 years ago
- f4b33f6 dict_popitem(): Repaired last-second 2.1 comment, which misidentified the by Tim Peters · 23 years ago
- eb28ef2 New collision resolution scheme: no polynomials, simpler, faster, less by Tim Peters · 23 years ago
- 15d4929 Implement an old idea of Christian Tismer's: use polynomial division by Tim Peters · 23 years ago
- cd35306 Patch #424335: Implement string_richcompare, remove string_compare. by Martin v. Löwis · 23 years ago
- f8a548c dictresize(): Rebuild small tables if there are any dummies, not just if by Tim Peters · 23 years ago
- 0c6010b Jack Jansen hit a bug in the new dict code, reported on python-dev. by Tim Peters · 23 years ago
- 0c23231 Remove unused variable. by Fred Drake · 23 years ago
- dea48ec SF patch #425242: Patch which "inlines" small dictionaries. by Tim Peters · 23 years ago
- 91a364d Bugfix candidate. by Tim Peters · 23 years ago
- 1928314 Speed dictresize by collapsing its two passes into one; the reason given by Tim Peters · 23 years ago
- 342c65e Aggressive reordering of dict comparisons. In case of collision, it stands by Tim Peters · 24 years ago
- 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 24 years ago
- 4fa58bf Restore dicts' tp_compare slot, and change dict_richcompare to say it by Tim Peters · 24 years ago
- 3918fb2 Repair typo in comment. by Tim Peters · 24 years ago
- 95bf939 SF bug #422121 Insecurities in dict comparison. by Tim Peters · 24 years ago
- e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 24 years ago
- b1f35bf Mchael Hudson pointed out that the code for detecting changes in by Guido van Rossum · 24 years ago
- 09e563a Add experimental iterkeys(), itervalues(), iteritems() to dict objects. by Guido van Rossum · 24 years ago
- 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 24 years ago
- 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
- 55ad67d Oops. Removed dictiter_new decl that wasn't supposed to go in yet. by Guido van Rossum · 24 years ago
- 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 24 years ago
- e04eaec Tim pointed out a remaining vulnerability in popitem(): the by Guido van Rossum · 24 years ago
- a4dd011 Tentative fix for a problem that Tim discovered at the last moment, by Guido van Rossum · 24 years ago
- 6783070 Make PyDict_Next safe to use for loops that merely modify the values by Tim Peters · 24 years ago
- b932420 Rich comparisons: by Guido van Rossum · 24 years ago
- 1fb6088 dict_update has two boundary conditions: a.update(a) and a.update({}) by Jeremy Hylton · 24 years ago
- f7f88b1 Add long-overdue docstrings to dict methods. by Tim Peters · 24 years ago
- f1c7c88 Typo repair in comments. Fell for GregS's .popitem() poke. by Tim Peters · 24 years ago
- ea8f2bf Bring comments up to date (e.g., they still said the table had to be by Tim Peters · 24 years ago
- ba6ab84 Add popitem() -- SF patch #102733. by Guido van Rossum · 24 years ago
- 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
- 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 1bff34a Slight performance hack that also avoids requiring the existence of thread by Fred Drake · 24 years ago
- c88b99c Clear errors raised by PyObject_Compare() without losing any existing by Fred Drake · 24 years ago
- 164452c Barry's patch to implement the new setdefault() method. by Guido van Rossum · 24 years ago
- 7889010 Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- 1f5871e Removed Py_PROTO and switched to ANSI C declarations in the dict by Tim Peters · 24 years ago
- 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
- d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
- 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 25 years ago
- d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 25 years ago
- 52fccfd dict_has_key(): Accept only one parameter. PR#210 reported by by Fred Drake · 25 years ago
- 2bc1379 Vladimir Marangozov contributed updated comments. by Guido van Rossum · 26 years ago
- f05fc71 Remove dead code discovered by Vladimir Marangozov. by Guido van Rossum · 26 years ago
- c1c7b1a Slight rearrangement of code in lookdict() by Vladimir Marangozov, to by Guido van Rossum · 26 years ago
- 0fd0033 Avoid using calloc(). This triggered an obscure bug on multiprocessor by Guido van Rossum · 26 years ago
- 474b19e Make sure that PyDict_GetItem[String]() *never* raises an exception. by Guido van Rossum · 27 years ago
- 255443b Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space. by Guido van Rossum · 27 years ago
- 6fcfa72 Correct Barry's fix -- take care of {}.get(0). by Guido van Rossum · 27 years ago
- 320ac33 dict_get(): Fixed a couple of stupid mistakes which caused crashes. by Barry Warsaw · 27 years ago
- c38c5da dict_get(): New method for item access with different semantics than by Barry Warsaw · 27 years ago
- 4f3bf1e Don't intern the key string for getitem and delitem. by Guido van Rossum · 27 years ago
- fd7a0b8 Made lookdict nearly twice as fast, resulting in a 5% overall by Guido van Rossum · 27 years ago
- 5d8123f Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
- a8d5131 Renamed dict.absorb() (too spungy) to dict.update(). by Guido van Rossum · 27 years ago
- e3f5b9c Added dict.absorb() and dict.copy(). by Guido van Rossum · 27 years ago
- 5b2121b PyObject_Compare can now return an error. Unfortunately, there are a by Guido van Rossum · 27 years ago
- 037b220 Moved PyObject_{Get,Set}Attr to object.c. by Guido van Rossum · 27 years ago
- 3cca245 Got rid of all the last_name_* bogosities. I don't think the by Guido van Rossum · 27 years ago
- a9e7a81 Renamed from mappingobject.c to dictobject.c. by Guido van Rossum · 28 years ago
- c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago
- 3648884 (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. by Guido van Rossum · 28 years ago
- 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 28 years ago
- fb8f1ca Add clear() method to dictionary objects. by Guido van Rossum · 28 years ago
- efb4609 Small lookmapping nits: by Guido van Rossum · 28 years ago
- 9e5656c Final three poly table entries corrected by Tim Peters. by Guido van Rossum · 28 years ago
- 16e93a8 Changed the lookup algorithm again, based on Reimer Behrends's post. by Guido van Rossum · 28 years ago
- ca756f2 Forget keeping track of whether a dictionary contains all interned by Guido van Rossum · 28 years ago
- 2a61e74 String interning. by Guido van Rossum · 28 years ago
- 7d18159 Rewrote lookmapping() according to suggestions by Jyrki Alakuijala. by Guido van Rossum · 28 years ago
- a0a69b8 Experimental new implementation of dictionary comparison. This by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
- 310968d Speedup suggested by Sjoerd by Guido van Rossum · 28 years ago
- 992ded8 fix free memory reads in dictlookup et al by Guido van Rossum · 29 years ago
- 5fe6058 a few peephole optimizations by Guido van Rossum · 30 years ago
- 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago