diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-07 21:13:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-07 21:13:46 (GMT) |
commit | a2ad5c3ad1bbf6d2088ff3ab2eb3bba51d096cc2 (patch) | |
tree | 097dbbd7fe661b0da5e496ee972f0c6df5a35842 /Misc | |
parent | 0e82fd1f78a9ae07c16b1f57a0f39bc56f798b30 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |