]> granicus.if.org Git - python/commit
Issue #16991: Add a C implementation of collections.OrderedDict.
authorEric Snow <ericsnowcurrently@gmail.com>
Sat, 30 May 2015 04:21:39 +0000 (22:21 -0600)
committerEric Snow <ericsnowcurrently@gmail.com>
Sat, 30 May 2015 04:21:39 +0000 (22:21 -0600)
commit96c6af9b207c188c52ac53ce87bb7f2dea3f328b
treec556c00510282cac20410e324505ff5b257874c6
parent0a3297d7d4e042d8fbb884a029f0ef7ad8b00e46
Issue #16991: Add a C implementation of collections.OrderedDict.
12 files changed:
Include/Python.h
Include/dictobject.h
Include/odictobject.h [new file with mode: 0644]
Lib/collections/__init__.py
Lib/test/test_collections.py
Makefile.pre.in
Misc/NEWS
Modules/_collectionsmodule.c
Objects/dict-common.h [new file with mode: 0644]
Objects/dictobject.c
Objects/object.c
Objects/odictobject.c [new file with mode: 0644]