summaryrefslogtreecommitdiffstats
path: root/Objects/odictobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* 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