cpython/Modules/_io
Victor Stinner 82458b6cdb
bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)
* Rename _Py_GetLocaleEncoding() to _Py_GetLocaleEncodingObject()
* Add _Py_GetLocaleEncoding() which returns a wchar_t* string to
  share code between _Py_GetLocaleEncodingObject()
  and config_get_locale_encoding().
* _Py_GetLocaleEncodingObject() now decodes nl_langinfo(CODESET)
  from the current locale encoding with surrogateescape,
  rather than using UTF-8.
2020-11-01 20:59:35 +01:00
..
clinic bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) 2020-05-28 10:33:45 +03:00
_iomodule.c bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050) 2020-10-31 01:02:09 +01:00
_iomodule.h bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050) 2020-10-31 01:02:09 +01:00
bufferedio.c closes bpo-28557: error message for bad raw readinto (GH-7496) 2020-06-15 18:53:57 -05:00
bytesio.c bpo-40268: Remove unused structmember.h includes (GH-19530) 2020-04-15 02:35:41 +02:00
fileio.c bpo-36346: Make using the legacy Unicode C API optional (GH-21437) 2020-07-10 23:26:06 +03:00
iobase.c bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998) 2020-10-27 17:12:53 +01:00
stringio.c bpo-40268: Remove unused structmember.h includes (GH-19530) 2020-04-15 02:35:41 +02:00
textio.c bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083) 2020-11-01 20:59:35 +01:00
winconsoleio.c bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) 2020-05-26 18:43:38 +03:00