summaryrefslogtreecommitdiff
path: root/Include/pylifecycle.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-12-01 20:50:58 +0100
committerGitHub <noreply@github.com>2017-12-01 20:50:58 +0100
commit0ea395ae964c9cd0f499e2ef0d0030c971201220 (patch)
tree92e86e1b1754d179c8dc4b397f4fa33e020a3aee /Include/pylifecycle.h
parentebac19dad6263141d5db0a2c923efe049dba99d2 (diff)
downloadcpython-git-0ea395ae964c9cd0f499e2ef0d0030c971201220.tar.gz
bpo-32030: Add Python/pathconfig.c (#4668)
* Factorize code from PC/getpathp.c and Modules/getpath.c to remove duplicated code * rename pathconfig_clear() to _PyPathConfig_Clear() * Inline _PyPathConfig_Fini() in pymain_impl() and then remove it, since it's a oneliner
Diffstat (limited to 'Include/pylifecycle.h')
-rw-r--r--Include/pylifecycle.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pylifecycle.h b/Include/pylifecycle.h
index 3db88326ae..fa751692a6 100644
--- a/Include/pylifecycle.h
+++ b/Include/pylifecycle.h
@@ -105,7 +105,6 @@ PyAPI_FUNC(wchar_t *) Py_GetPath(void);
#ifdef Py_BUILD_CORE
PyAPI_FUNC(_PyInitError) _PyPathConfig_Init(
const _PyMainInterpreterConfig *main_config);
-PyAPI_FUNC(void) _PyPathConfig_Fini(void);
#endif
PyAPI_FUNC(void) Py_SetPath(const wchar_t *);
#ifdef MS_WINDOWS