diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-14 23:50:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 23:50:28 (GMT) |
commit | 37b1d607bf0f1a9c1e89b1715349efc24dc180e0 (patch) | |
tree | 5115d4b858df130997a63f16c7144ffdda1f4c36 /Include/Python.h | |
parent | 7076bef8ba8836a19d5033f4ceb8eb9837de2301 (diff) | |
download | cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.zip cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.tar.gz cpython-37b1d607bf0f1a9c1e89b1715349efc24dc180e0.tar.bz2 |
po-35134: Move Include/funcobject.h to Include/cpython/ (GH-28958)
Remove redundant "#ifndef Py_LIMITED_API" in funcobject.h.
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 dc5c9b8..e8e061b 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -60,7 +60,7 @@ #include "setobject.h" #include "methodobject.h" #include "moduleobject.h" -#include "funcobject.h" +#include "cpython/funcobject.h" #include "classobject.h" #include "fileobject.h" #include "pycapsule.h" |