From: Serhiy Storchaka Date: Mon, 7 Jan 2013 21:16:49 +0000 (+0200) Subject: Issue #15972: Fix error messages when os functions expecting a file name or X-Git-Tag: v3.4.0a1~1681 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c99b5120a7389323fce2d41dbbe15d04589ad0a0;p=python Issue #15972: Fix error messages when os functions expecting a file name or file descriptor receive the incorrect type. --- c99b5120a7389323fce2d41dbbe15d04589ad0a0 diff --cc Misc/NEWS index 53e5cbac01,00fc9a6367..d073441427 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -206,17 -136,9 +206,20 @@@ Core and Builtin Library ------- + - Issue #15972: Fix error messages when os functions expecting a file name or + file descriptor receive the incorrect type. + +- Issue #8109: The ssl module now has support for server-side SNI, thanks + to a :meth:`SSLContext.set_servername_callback` method. Patch by Daniel + Black. + +- Issue #16860: In tempfile, use O_CLOEXEC when available to set the + close-on-exec flag atomically. + +- Issue #16674: random.getrandbits() is now 20-40% faster for small integers. + +- Issue #16009: JSON error messages now provide more information. + - Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and bz2.BZ2Compressor.compress(b''). Initial patch by Martin Packman.