summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-03-06 00:44:31 (GMT)
committerGitHub <noreply@github.com>2019-03-06 00:44:31 (GMT)
commit4fffd380a4070aff39b7fd443d90e60746c1b623 (patch)
tree2128ef8300deb023c117151905b1a822157761d9 /Include
parentc656e25667c9acc0d13e5bb16d3df2938d0f614b (diff)
downloadcpython-4fffd380a4070aff39b7fd443d90e60746c1b623.zip
cpython-4fffd380a4070aff39b7fd443d90e60746c1b623.tar.gz
cpython-4fffd380a4070aff39b7fd443d90e60746c1b623.tar.bz2
bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188)
* _PyPreConfig_Read() now sets temporarily LC_CTYPE to the user preferred locale, as _PyPreConfig_Write() will do permanentely. * Fix _PyCoreConfig_Clear(): clear run_xxx attributes * _Py_SetArgcArgv() doesn't have to be exported * _PyCoreConfig_SetGlobalConfig() no longer applies preconfig
Diffstat (limited to 'Include')
-rw-r--r--Include/internal/pycore_coreconfig.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pycore_coreconfig.h b/Include/internal/pycore_coreconfig.h
index 0917a6a..153309d 100644
--- a/Include/internal/pycore_coreconfig.h
+++ b/Include/internal/pycore_coreconfig.h
@@ -32,7 +32,6 @@ PyAPI_FUNC(_PyInitError) _PyArgv_Decode(const _PyArgv *args,
/* --- Py_GetArgcArgv() helpers ----------------------------------- */
PyAPI_FUNC(void) _Py_ClearArgcArgv(void);
-PyAPI_FUNC(int) _Py_SetArgcArgv(int argc, wchar_t * const *argv);
/* --- _PyPreConfig ----------------------------------------------- */