@@ -3163,13 +3163,13 @@ hash_info -- a named tuple with information about the hash algorithm.\n\
31633163hexversion -- version information encoded as a single integer\n\
31643164implementation -- Python implementation information.\n\
31653165int_info -- a named tuple with information about the int implementation.\n\
3166- is_mingw -- integer value if Python builded with mingw-w64 toolchain\n\
3166+ _is_mingw -- integer value if Python builded with mingw-w64 toolchain\n\
31673167maxsize -- the largest supported length of containers.\n\
31683168maxunicode -- the value of the largest Unicode code point\n\
31693169platform -- platform identifier\n\
31703170prefix -- prefix used to find the Python library\n\
31713171thread_info -- a named tuple with information about the thread implementation.\n\
3172- use_alt_sep -- indicate if need use posix style path setparator for path normalize\n\
3172+ _use_alt_sep -- indicate if need use posix style path setparator for path normalize\n\
31733173version -- the version of this interpreter as a string\n\
31743174version_info -- version information as a named tuple\n\
31753175"
@@ -3647,8 +3647,8 @@ _PySys_InitCore(PyThreadState *tstate, PyObject *sysdict)
36473647 SET_SYS_FROM_STRING ("byteorder" , "little" );
36483648#endif
36493649
3650- SET_SYS ("is_mingw " , PyLong_FromLong (is_mingw_platform ()));
3651- SET_SYS ("use_alt_sep " , PyLong_FromLong (use_alt_sep ()));
3650+ SET_SYS ("_is_mingw " , PyLong_FromLong (is_mingw_platform ()));
3651+ SET_SYS ("_use_alt_sep " , PyLong_FromLong (use_alt_sep ()));
36523652
36533653#if defined(MS_WINDOWS ) && defined(Py_ENABLE_SHARED )
36543654 SET_SYS ("dllhandle" , PyLong_FromVoidPtr (PyWin_DLLhModule ));
0 commit comments