| Commit message (Expand) | Author | Age | Files | Lines |
* | In doc strings, use 'k in D' rather than D.has_key(k). | Guido van Rossum | 2002-09-04 | 1 | -2/+2 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 1 | -9/+3 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | Make StopIteration a sink state. This is done by clearing out the | Guido van Rossum | 2002-07-16 | 1 | -28/+11 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -30/+30 |
|
|
* | Add Raymond Hettinger's d.pop(). See SF patch 539949. | Guido van Rossum | 2002-04-12 | 1 | -0/+38 |
|
|
* | PyObject_GC_Del and PyObject_Del can now be used as a function | Neil Schemenauer | 2002-04-12 | 1 | -3/+3 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -1/+1 |
|
|
* | Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. | Tim Peters | 2002-03-29 | 1 | -34/+8 |
|
|
* | This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). | Guido van Rossum | 2002-03-28 | 1 | -1/+1 |
|
|
* | Use pymalloc if it's enabled. | Neil Schemenauer | 2002-03-22 | 1 | -2/+2 |
|
|
* | SF bug #491415 PyDict_UpdateFromSeq2() unused | Tim Peters | 2001-12-11 | 1 | -8/+2 |
|
|
* | Fix of SF bug #475877 (Mutable subtype instances are hashable). | Guido van Rossum | 2001-12-03 | 1 | -1/+8 |
|
|
* | Rename "dictionary" (type and constructor) to "dict". | Tim Peters | 2001-10-29 | 1 | -5/+5 |
|
|
* | dictionary() constructor: | Tim Peters | 2001-10-27 | 1 | -7/+5 |
|
|
* | Generalize dictionary() to accept a sequence of 2-sequences. At the | Tim Peters | 2001-10-26 | 1 | -16/+102 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | Changed the dict implementation to take "string shortcuts" only when | Tim Peters | 2001-09-14 | 1 | -13/+16 |
|
|
* | Repair typo in comment. | Tim Peters | 2001-09-02 | 1 | -1/+1 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 1 | -2/+29 |
|
|
* | Use new GC API. | Neil Schemenauer | 2001-08-29 | 1 | -7/+6 |
|
|
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 1 | -50/+25 |
|
|
* | Add PyDict_Merge(a, b, override): | Guido van Rossum | 2001-08-10 | 1 | -2/+18 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -123/+107 |
|
|
* | dict_update(): Generalize this method so {}.update() accepts any | Barry Warsaw | 2001-06-26 | 1 | -17/+70 |
|
|
* | dict_repr: Reuse one of the int vars (minor code simplification). | Tim Peters | 2001-06-16 | 1 | -3/+3 |
|
|
* | SF bug 433228: repr(list) woes when len(list) big. | Tim Peters | 2001-06-16 | 1 | -30/+68 |
|
|
* | Store the mask instead of the size in dictobjects. The mask is more | Tim Peters | 2001-06-04 | 1 | -23/+29 |
|
|
* | lookdict: stop more insane core-dump mutating comparison cases. Should | Tim Peters | 2001-06-03 | 1 | -6/+31 |
|
|
* | lookdict: Reduce obfuscating code duplication with a judicious goto. | Tim Peters | 2001-06-03 | 1 | -25/+21 |
|
|
* | Finish the dict->string coredump fix. Need sleep. | Tim Peters | 2001-06-02 | 1 | -1/+1 |
|
|
* | Coredumpers from Michael Hudson, mutating dicts while printing or | Tim Peters | 2001-06-02 | 1 | -7/+19 |
|
|
* | dict_popitem(): Repaired last-second 2.1 comment, which misidentified the | Tim Peters | 2001-06-02 | 1 | -5/+8 |
|
|
* | New collision resolution scheme: no polynomials, simpler, faster, less | Tim Peters | 2001-06-02 | 1 | -163/+124 |
|
|
* | Implement an old idea of Christian Tismer's: use polynomial division | Tim Peters | 2001-05-27 | 1 | -18/+72 |
|
|
* | Patch #424335: Implement string_richcompare, remove string_compare. | Martin v. Löwis | 2001-05-24 | 1 | -4/+3 |
|
|
* | dictresize(): Rebuild small tables if there are any dummies, not just if | Tim Peters | 2001-05-24 | 1 | -7/+11 |
|
|
* | Jack Jansen hit a bug in the new dict code, reported on python-dev. | Tim Peters | 2001-05-23 | 1 | -9/+28 |
|
|
* | Remove unused variable. | Fred Drake | 2001-05-22 | 1 | -1/+0 |
|
|
* | SF patch #425242: Patch which "inlines" small dictionaries. | Tim Peters | 2001-05-22 | 1 | -81/+145 |
|
|
* | Bugfix candidate. | Tim Peters | 2001-05-19 | 1 | -2/+3 |
|
|
* | Speed dictresize by collapsing its two passes into one; the reason given | Tim Peters | 2001-05-17 | 1 | -8/+9 |
|
|
* | Aggressive reordering of dict comparisons. In case of collision, it stands | Tim Peters | 2001-05-13 | 1 | -30/+21 |
|
|
* | Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". | Tim Peters | 2001-05-13 | 1 | -10/+2 |
|
|
* | Restore dicts' tp_compare slot, and change dict_richcompare to say it | Tim Peters | 2001-05-10 | 1 | -15/+3 |
|
|
* | Repair typo in comment. | Tim Peters | 2001-05-10 | 1 | -1/+1 |
|
|
* | SF bug #422121 Insecurities in dict comparison. | Tim Peters | 2001-05-10 | 1 | -34/+95 |
|
|
* | SF patch #421922: Implement rich comparison for dicts. | Tim Peters | 2001-05-08 | 1 | -2/+72 |
|
|
* | Mchael Hudson pointed out that the code for detecting changes in | Guido van Rossum | 2001-05-02 | 1 | -4/+4 |
|
|
* | Add experimental iterkeys(), itervalues(), iteritems() to dict | Guido van Rossum | 2001-05-01 | 1 | -11/+85 |
|
|