From: Benjamin Peterson Date: Fri, 3 Dec 2021 23:21:58 +0000 (-0800) Subject: bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907) X-Git-Tag: v3.11.0a3~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ae4e0c959bbc90ec18180ef3cc957759d346ced;p=thirdparty%2FPython%2Fcpython.git bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907) Automerge-Triggered-By: GH:tiran --- diff --git a/Include/internal/pycore_initconfig.h b/Include/internal/pycore_initconfig.h index be545f495dc0..a2f4cd182e8e 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 ---------------------------------- */