]> 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)
commit47db71756dc46873752166d35d4b8d00d09c8c5f
treee914661584cd3c21109269f757efc2a50e3b5f33
parent3979323ca3c6e51a194ece6d9d21b2f26a392f62
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]