diff options
author | Nicholas Sim <nsim@posteo.net> | 2021-02-19 14:55:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 14:55:46 (GMT) |
commit | 4a6bf276ed3e6687394afe26b0d9a061ac06fc6b (patch) | |
tree | 249bba20a6ee0ca4ae9b2a1661a12443370e5e46 /Include | |
parent | 839184f85cb2d2ad514fff9b431733d1c9607533 (diff) | |
download | cpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.zip cpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.tar.gz cpython-4a6bf276ed3e6687394afe26b0d9a061ac06fc6b.tar.bz2 |
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
Include/{odictobject.h,parser_interface.h,picklebufobject.h,pydebug.h,pyfpe.h}
into Include/cpython/.
Parser: peg_api: include Python.h instead of parser_interface.h.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 10 | ||||
-rw-r--r-- | Include/cpython/odictobject.h (renamed from Include/odictobject.h) | 0 | ||||
-rw-r--r-- | Include/cpython/parser_interface.h (renamed from Include/parser_interface.h) | 0 | ||||
-rw-r--r-- | Include/cpython/picklebufobject.h (renamed from Include/picklebufobject.h) | 0 | ||||
-rw-r--r-- | Include/cpython/pydebug.h (renamed from Include/pydebug.h) | 0 | ||||
-rw-r--r-- | Include/cpython/pyfpe.h (renamed from Include/pyfpe.h) | 0 |
6 files changed, 5 insertions, 5 deletions
diff --git a/Include/Python.h b/Include/Python.h index c71a71f..86dbbcf 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -89,7 +89,7 @@ #include "typeslots.h" #include "pyhash.h" -#include "pydebug.h" +#include "cpython/pydebug.h" #include "bytearrayobject.h" #include "bytesobject.h" @@ -104,7 +104,7 @@ #include "tupleobject.h" #include "listobject.h" #include "dictobject.h" -#include "odictobject.h" +#include "cpython/odictobject.h" #include "enumobject.h" #include "setobject.h" #include "methodobject.h" @@ -126,7 +126,7 @@ #include "weakrefobject.h" #include "structseq.h" #include "namespaceobject.h" -#include "picklebufobject.h" +#include "cpython/picklebufobject.h" #include "cpython/pytime.h" #include "codecs.h" @@ -141,7 +141,7 @@ #include "modsupport.h" #include "compile.h" #include "pythonrun.h" -#include "parser_interface.h" +#include "cpython/parser_interface.h" #include "pylifecycle.h" #include "ceval.h" #include "sysmodule.h" @@ -158,7 +158,7 @@ #include "pystrtod.h" #include "pystrcmp.h" #include "fileutils.h" -#include "pyfpe.h" +#include "cpython/pyfpe.h" #include "tracemalloc.h" #endif /* !Py_PYTHON_H */ diff --git a/Include/odictobject.h b/Include/cpython/odictobject.h index e070413..e070413 100644 --- a/Include/odictobject.h +++ b/Include/cpython/odictobject.h diff --git a/Include/parser_interface.h b/Include/cpython/parser_interface.h index 1c6576d..1c6576d 100644 --- a/Include/parser_interface.h +++ b/Include/cpython/parser_interface.h diff --git a/Include/picklebufobject.h b/Include/cpython/picklebufobject.h index 0df2561..0df2561 100644 --- a/Include/picklebufobject.h +++ b/Include/cpython/picklebufobject.h diff --git a/Include/pydebug.h b/Include/cpython/pydebug.h index 78bcb11..78bcb11 100644 --- a/Include/pydebug.h +++ b/Include/cpython/pydebug.h diff --git a/Include/pyfpe.h b/Include/cpython/pyfpe.h index cc2def6..cc2def6 100644 --- a/Include/pyfpe.h +++ b/Include/cpython/pyfpe.h |