diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-09-09 09:35:08 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-09-09 09:35:08 (GMT) |
commit | 19052a11314e7be7ba003fd6cdbb5400a5d77d96 (patch) | |
tree | e4b97c122bf4794d957dff814563b6657ffd0630 /Misc | |
parent | 5e5e9515029f70836003a8cfb30433166fcc8db7 (diff) | |
download | cpython-19052a11314e7be7ba003fd6cdbb5400a5d77d96.zip cpython-19052a11314e7be7ba003fd6cdbb5400a5d77d96.tar.gz cpython-19052a11314e7be7ba003fd6cdbb5400a5d77d96.tar.bz2 |
bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623)
winerror_to_errno() is no longer automatically generated.
Do not rely on the old _dosmapperr() function.
Add ERROR_NO_UNICODE_TRANSLATION (1113) -> EILSEQ.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2019-08-30-15-15-22.bpo-37705.2o4NWW.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2019-08-30-15-15-22.bpo-37705.2o4NWW.rst b/Misc/NEWS.d/next/Windows/2019-08-30-15-15-22.bpo-37705.2o4NWW.rst new file mode 100644 index 0000000..a374c3a --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2019-08-30-15-15-22.bpo-37705.2o4NWW.rst @@ -0,0 +1 @@ +Improve the implementation of ``winerror_to_errno()``. |