summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2022-03-30 17:31:33 (GMT)
committerGitHub <noreply@github.com>2022-03-30 17:31:33 (GMT)
commitd0c67ea0645b7ad37b867c167882a346a24de641 (patch)
tree281c4ef70cd4d42c177641dd1307ac5aff54ab13 /Misc
parenta03a09e068435f47d02649dda93988dc44ffaaf1 (diff)
downloadcpython-d0c67ea0645b7ad37b867c167882a346a24de641.zip
cpython-d0c67ea0645b7ad37b867c167882a346a24de641.tar.gz
cpython-d0c67ea0645b7ad37b867c167882a346a24de641.tar.bz2
bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (GH-32179)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-30-02-36-25.bpo-46775.e3Oxqf.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-30-02-36-25.bpo-46775.e3Oxqf.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-30-02-36-25.bpo-46775.e3Oxqf.rst
new file mode 100644
index 0000000..da56ecd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-30-02-36-25.bpo-46775.e3Oxqf.rst
@@ -0,0 +1,3 @@
+Some Windows system error codes(>= 10000) are now mapped into
+the correct errno and may now raise a subclass of :exc:`OSError`.
+Patch by Dong-hee Na.