summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-10-02 21:51:20 (GMT)
committerGitHub <noreply@github.com>2019-10-02 21:51:20 (GMT)
commit61691d833631fed42b86605b09e1535e3e8d40e5 (patch)
tree766d3ec48508213f7e371728b29c9cf49cdecee9 /PC
parentb3e7045f8314e7b62cd95861d207fe2f97e47198 (diff)
downloadcpython-61691d833631fed42b86605b09e1535e3e8d40e5.zip
cpython-61691d833631fed42b86605b09e1535e3e8d40e5.tar.gz
cpython-61691d833631fed42b86605b09e1535e3e8d40e5.tar.bz2
bpo-38353: Cleanup includes in the internal C API (GH-16548)
Use forward declaration of types to avoid includes in the internal C API. Add also comment to justify other includes.
Diffstat (limited to 'PC')
-rw-r--r--PC/getpathp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/PC/getpathp.c b/PC/getpathp.c
index 04f24d9..b17c002 100644
--- a/PC/getpathp.c
+++ b/PC/getpathp.c
@@ -80,7 +80,8 @@
#include "Python.h"
-#include "pycore_initconfig.h"
+#include "pycore_initconfig.h" /* PyStatus */
+#include "pycore_pathconfig.h" /* _PyPathConfig */
#include "pycore_pystate.h"
#include "osdefs.h"
#include <wchar.h>