diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2015-05-30 04:21:39 (GMT) |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2015-05-30 04:21:39 (GMT) |
commit | 47db71756dc46873752166d35d4b8d00d09c8c5f (patch) | |
tree | e914661584cd3c21109269f757efc2a50e3b5f33 /Include/Python.h | |
parent | 3979323ca3c6e51a194ece6d9d21b2f26a392f62 (diff) | |
download | cpython-47db71756dc46873752166d35d4b8d00d09c8c5f.zip cpython-47db71756dc46873752166d35d4b8d00d09c8c5f.tar.gz cpython-47db71756dc46873752166d35d4b8d00d09c8c5f.tar.bz2 |
Issue #16991: Add a C implementation of collections.OrderedDict.
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index 46d2ece..858dbd1 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -85,6 +85,7 @@ #include "tupleobject.h" #include "listobject.h" #include "dictobject.h" +#include "odictobject.h" #include "enumobject.h" #include "setobject.h" #include "methodobject.h" |