summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-07 21:13:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-07 21:13:46 (GMT)
commita2ad5c3ad1bbf6d2088ff3ab2eb3bba51d096cc2 (patch)
tree097dbbd7fe661b0da5e496ee972f0c6df5a35842 /Misc
parent0e82fd1f78a9ae07c16b1f57a0f39bc56f798b30 (diff)
downloadcpython-a2ad5c3ad1bbf6d2088ff3ab2eb3bba51d096cc2.zip
cpython-a2ad5c3ad1bbf6d2088ff3ab2eb3bba51d096cc2.tar.gz
cpython-a2ad5c3ad1bbf6d2088ff3ab2eb3bba51d096cc2.tar.bz2
Issue #15972: Fix error messages when os functions expecting a file name or
file descriptor receive the incorrect type.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d07675..00fc9a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -136,6 +136,9 @@ Core and Builtins
Library
-------
+- Issue #15972: Fix error messages when os functions expecting a file name or
+ file descriptor receive the incorrect type.
+
- Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and
bz2.BZ2Compressor.compress(b''). Initial patch by Martin Packman.