summaryrefslogtreecommitdiffstats
path: root/Include/coreconfig.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-01 02:15:58 (GMT)
committerGitHub <noreply@github.com>2018-11-01 02:15:58 (GMT)
commita1c249c40517917d2e0971d55aea8d14a44b2cc8 (patch)
tree626ca174cb49d8dd299f529cc100485a08bea9d2 /Include/coreconfig.h
parente281f7d80ce2584a7e6a36acffb5a9cd796a0fe2 (diff)
downloadcpython-a1c249c40517917d2e0971d55aea8d14a44b2cc8.zip
cpython-a1c249c40517917d2e0971d55aea8d14a44b2cc8.tar.gz
cpython-a1c249c40517917d2e0971d55aea8d14a44b2cc8.tar.bz2
bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)
* And pycore_lifecycle.h and pycore_pathconfig.h headers to Include/internal/ * Move Py_BUILD_CORE specific code from coreconfig.h and pylifecycle.h to pycore_pathconfig.h and pycore_lifecycle.h * Move _Py_wstrlist_XXX() definitions and _PyPathConfig code from pycore_state.h to pycore_pathconfig.h * Move "Init" and "Fini" function definitions from pylifecycle.c to pycore_lifecycle.h.
Diffstat (limited to 'Include/coreconfig.h')
-rw-r--r--Include/coreconfig.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/Include/coreconfig.h b/Include/coreconfig.h
index 83c4e7e..ff7b684 100644
--- a/Include/coreconfig.h
+++ b/Include/coreconfig.h
@@ -361,17 +361,6 @@ PyAPI_FUNC(int) _PyCoreConfig_GetEnvDup(
#endif
-#ifdef Py_BUILD_CORE
-PyAPI_FUNC(int) _Py_SetFileSystemEncoding(
- const char *encoding,
- const char *errors);
-PyAPI_FUNC(void) _Py_ClearFileSystemEncoding(void);
-#endif
-
-#ifndef Py_LIMITED_API
-PyAPI_FUNC(PyObject*) _Py_wstrlist_as_pylist(int len, wchar_t **list);
-#endif
-
#ifdef __cplusplus
}