| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch #798467: Update docstring of has_key for bool changes | Raymond Hettinger | 2003-09-01 | 1 | -1/+1 |
|
|
* | SF patch #729395: Dictionary tuning | Raymond Hettinger | 2003-05-07 | 1 | -2/+2 |
|
|
* | SF patch #729395: Dictionary tuning | Raymond Hettinger | 2003-05-05 | 1 | -10/+16 |
|
|
* | Add a reference to dictnotes.txt. It does no good if you don't know it's | Raymond Hettinger | 2003-05-03 | 1 | -0/+6 |
|
|
* | Renamed PyObject_GenericGetIter to PyObject_SelfIter | Raymond Hettinger | 2003-03-17 | 1 | -1/+1 |
|
|
* | Created PyObject_GenericGetIter(). | Raymond Hettinger | 2003-03-17 | 1 | -8/+1 |
|
|
* | SF patch #693753: fix for bug 639806: default for dict.pop | Raymond Hettinger | 2003-03-06 | 1 | -3/+15 |
|
|
* | Add closing ) in comment | Neal Norwitz | 2003-02-15 | 1 | -1/+1 |
|
|
* | cPickle.c, load_build(): Taught cPickle how to pick apart | Tim Peters | 2003-02-15 | 1 | -1/+11 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -4/+4 |
|
|
* | Constify char* API. Fixes #651363. 2.2 candidate. | Martin v. Löwis | 2002-12-11 | 1 | -3/+3 |
|
|
* | SF 548651: Fix the METH_CLASS implementation. | Tim Peters | 2002-12-09 | 1 | -3/+2 |
|
|
* | Remove assumption that cls is a subclass of dict. | Raymond Hettinger | 2002-12-07 | 1 | -7/+1 |
|
|
* | Replace BadInternalCall with TypeError. Add a test case. Fix whitespace. | Raymond Hettinger | 2002-12-04 | 1 | -2/+3 |
|
|
* | Add missing decref | Neal Norwitz | 2002-11-27 | 1 | -0/+1 |
|
|
* | SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class | Raymond Hettinger | 2002-11-27 | 1 | -0/+56 |
|
|
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -5/+7 |
|
|
* | 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 |
|
|