summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-08-29 06:25:22 (GMT)
committerGitHub <noreply@github.com>2019-08-29 06:25:22 (GMT)
commitb235a1b47394eedc5f8ea4cf214f56c4c6932e59 (patch)
tree462594be94793d0fa1b757c8352925286e54264b /Misc
parentf5896a05edf5df91fb1b55bd481ba5b2a3682f4e (diff)
downloadcpython-b235a1b47394eedc5f8ea4cf214f56c4c6932e59.zip
cpython-b235a1b47394eedc5f8ea4cf214f56c4c6932e59.tar.gz
cpython-b235a1b47394eedc5f8ea4cf214f56c4c6932e59.tar.bz2
bpo-37960: Silence only necessary errors in repr() of buffered and text streams. (GH-15543)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-27-10-52-13.bpo-37960.CTY7Lw.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-27-10-52-13.bpo-37960.CTY7Lw.rst b/Misc/NEWS.d/next/Library/2019-08-27-10-52-13.bpo-37960.CTY7Lw.rst
new file mode 100644
index 0000000..421cfb9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-27-10-52-13.bpo-37960.CTY7Lw.rst
@@ -0,0 +1,2 @@
+``repr()`` of buffered and text streams now silences only expected
+exceptions when get the value of "name" and "mode" attributes.