summaryrefslogtreecommitdiffstats
path: root/Objects/odictobject.c
Commit message (Collapse)AuthorAgeFilesLines
* repair my irrational excuberanceBenjamin Peterson2015-06-071-54/+57
|
* remove unnecessary braces and indentationBenjamin Peterson2015-06-071-58/+57
|
* fix refleak when keys() failsBenjamin Peterson2015-06-041-2/+6
|
* Issue #24369: Defend against key-changes during iteration.Eric Snow2015-06-041-13/+19
|
* Issue #24377: Fix a ref leak in OrderedDict.__repr__.Eric Snow2015-06-031-1/+1
|
* Issue #24362: Simplify the C OrderedDict fast nodes resize logic.Eric Snow2015-06-031-34/+40
|
* Issue #24368: Support keyword arguments in OrderedDict methods.Eric Snow2015-06-031-23/+49
|
* Issue #24359: Check for changed OrderedDict size during iteration.Eric Snow2015-06-021-0/+10
|
* Issue #24348: Drop superfluous increfs/decrefs.Eric Snow2015-06-021-33/+13
|
* Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL.Eric Snow2015-06-021-15/+47
|
* Issue #16991: Fix a few leaks and other memory-related concerns in OrderedDict.Eric Snow2015-05-301-12/+14
|
* Issue #16991: Do not return None from OrderedDict.__reversed__.Eric Snow2015-05-301-3/+0
|
* Issue #16991: Properly handle return values in several places.Eric Snow2015-05-301-16/+43
|
* Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-301-0/+2394