diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 00:39:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 00:39:58 (GMT) |
commit | 77b24ba505744532d7cfd721b1c92d205e145180 (patch) | |
tree | 5d4ce2941123f8da62efe2f20d4be69cf97c40bc /Include/Python.h | |
parent | 37b1d607bf0f1a9c1e89b1715349efc24dc180e0 (diff) | |
download | cpython-77b24ba505744532d7cfd721b1c92d205e145180.zip cpython-77b24ba505744532d7cfd721b1c92d205e145180.tar.gz cpython-77b24ba505744532d7cfd721b1c92d205e145180.tar.bz2 |
bpo-35134: Move Include/cellobject.h to Include/cpython/ (GH-28964)
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index e8e061b..89f60fe 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -68,7 +68,7 @@ #include "pyframe.h" #include "traceback.h" #include "sliceobject.h" -#include "cellobject.h" +#include "cpython/cellobject.h" #include "iterobject.h" #include "genobject.h" #include "descrobject.h" |