diff options
author | Nicholas Sim <nsim@posteo.net> | 2021-02-17 18:30:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 18:30:31 (GMT) |
commit | 366dc3a1354078e38808b9c16276e97cca5b8aaf (patch) | |
tree | c845b23d23070aabd7ef53cb30734a525482ae47 /Include/Python.h | |
parent | 630264a152115f9671d6b793455ef5c2cea09a97 (diff) | |
download | cpython-366dc3a1354078e38808b9c16276e97cca5b8aaf.zip cpython-366dc3a1354078e38808b9c16276e97cca5b8aaf.tar.gz cpython-366dc3a1354078e38808b9c16276e97cca5b8aaf.tar.bz2 |
bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)
Move non-limited C API headers pyarena.h and pyctype.h
into Include/cpython/ directory.
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/Python.h b/Include/Python.h index 76ead9e..c71a71f 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -137,7 +137,7 @@ #include "pystate.h" #include "context.h" -#include "pyarena.h" +#include "cpython/pyarena.h" #include "modsupport.h" #include "compile.h" #include "pythonrun.h" @@ -154,7 +154,7 @@ #include "eval.h" -#include "pyctype.h" +#include "cpython/pyctype.h" #include "pystrtod.h" #include "pystrcmp.h" #include "fileutils.h" |