summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2021-12-03 23:21:58 (GMT)
committerGitHub <noreply@github.com>2021-12-03 23:21:58 (GMT)
commit0ae4e0c959bbc90ec18180ef3cc957759d346ced (patch)
treeb4d018f8238de2d824e1b9daaff61b63cc03a9ac
parent7d7c91a8e8c0bb04105a21a17d1061ffc1c04d80 (diff)
downloadcpython-0ae4e0c959bbc90ec18180ef3cc957759d346ced.zip
cpython-0ae4e0c959bbc90ec18180ef3cc957759d346ced.tar.gz
cpython-0ae4e0c959bbc90ec18180ef3cc957759d346ced.tar.bz2
bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907)
Automerge-Triggered-By: GH:tiran
-rw-r--r--Include/internal/pycore_initconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_initconfig.h b/Include/internal/pycore_initconfig.h
index be545f4..a2f4cd1 100644
--- a/Include/internal/pycore_initconfig.h
+++ b/Include/internal/pycore_initconfig.h
@@ -168,7 +168,7 @@ PyAPI_FUNC(int) _PyConfig_FromDict(PyConfig *config, PyObject *dict);
extern void _Py_DumpPathConfig(PyThreadState *tstate);
-PyAPI_FUNC(PyObject*) _Py_Get_Getpath_CodeObject();
+PyAPI_FUNC(PyObject*) _Py_Get_Getpath_CodeObject(void);
/* --- Function used for testing ---------------------------------- */