diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2015-05-29 22:21:39 -0600 |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2015-05-29 22:21:39 -0600 |
commit | 96c6af9b207c188c52ac53ce87bb7f2dea3f328b (patch) | |
tree | c556c00510282cac20410e324505ff5b257874c6 /Include/Python.h | |
parent | 0a3297d7d4e042d8fbb884a029f0ef7ad8b00e46 (diff) | |
download | cpython-git-96c6af9b207c188c52ac53ce87bb7f2dea3f328b.tar.gz |
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 46d2eced92..858dbd1a66 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" |