summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-04-05 02:30:06 (GMT)
committerGitHub <noreply@github.com>2022-04-05 02:30:06 (GMT)
commit3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4 (patch)
treee0b88440fe78093cd8583d879a3508bd6ede43b9 /Misc
parent6b4b892e0962a7050c5064133c59955691f9776c (diff)
downloadcpython-3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4.zip
cpython-3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4.tar.gz
cpython-3fa800d7a7a405f51e0e8c9b7dac2f2a75c17bb4.tar.bz2
bpo-41233: Add links to errnos referenced in exceptions docs (GH-21380)
Co-authored-by: Andrew Kuchling <amk@amk.ca> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> (cherry picked from commit a74892cb2168d249d9a8c53fad605a5def9b41d4) Co-authored-by: yyyyyyyan <24644216+yyyyyyyan@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Documentation/2020-07-07-22-54-51.bpo-41233.lyUJ8L.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ab4a037..c6abfac 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1291,6 +1291,7 @@ Ken Jin Ooi
Piet van Oostrum
Tomas Oppelstrup
Jason Orendorff
+Yan "yyyyyyyan" Orestes
Bastien Orivel
orlnub123
Douglas Orr
diff --git a/Misc/NEWS.d/next/Documentation/2020-07-07-22-54-51.bpo-41233.lyUJ8L.rst b/Misc/NEWS.d/next/Documentation/2020-07-07-22-54-51.bpo-41233.lyUJ8L.rst
new file mode 100644
index 0000000..ea0643a
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2020-07-07-22-54-51.bpo-41233.lyUJ8L.rst
@@ -0,0 +1 @@
+Link the errnos referenced in ``Doc/library/exceptions.rst`` to their respective section in ``Doc/library/errno.rst``, and vice versa. Previously this was only done for EINTR and InterruptedError. Patch by Yan "yyyyyyyan" Orestes.