From: Éric Araujo Date: Mon, 21 Mar 2011 02:18:58 +0000 (+0100) Subject: Fix some issue references in NEWS X-Git-Tag: v3.3.0a1~2820 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b277241fd2a0f280e98918c3c3e77febf5974f43;p=thirdparty%2FPython%2Fcpython.git Fix some issue references in NEWS --- b277241fd2a0f280e98918c3c3e77febf5974f43 diff --cc Misc/NEWS index ba1d4244c5e6,0bf7550864b1..992ef8f54a33 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -180,20 -118,6 +180,20 @@@ Librar - Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). +- Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). + +- Issue #8513: On UNIX, subprocess supports bytes command string. + +- Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. + +- Issue #11140: Lock.release() now raises a RuntimeError when attempting + to release an unacquired lock, as claimed in the threading documentation. + The _thread.error exception is now an alias of RuntimeError. Patch by + Filip Gruszczyński. Patch for _dummy_thread by Aymeric Augustin. + - - Issue 8594: ftplib now provides a source_address parameter to specify which ++- Issue #8594: ftplib now provides a source_address parameter to specify which + (address, port) to bind to before connecting. + - Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. @@@ -207,29 -124,9 +207,29 @@@ - Issue #7322: Trying to read from a socket's file-like object after a timeout occurred now raises an error instead of silently losing data. - - Issue 11291: poplib.POP no longer suppresses errors on quit(). ++- Issue #11291: poplib.POP no longer suppresses errors on quit(). + - - Issue 11177: asyncore's create_socket() arguments can now be omitted. ++- Issue #11177: asyncore's create_socket() arguments can now be omitted. + +- Issue #6064: Add a ``daemon`` keyword argument to the threading.Thread + and multiprocessing.Process constructors in order to override the + default behaviour of inheriting the daemonic property from the current + thread/process. + - Issue #10956: Buffered I/O classes retry reading or writing after a signal has arrived and the handler returned successfully. +- Issue #10784: New os.getpriority() and os.setpriority() functions. + +- Issue #11114: Fix catastrophic performance of tell() on text files (up + to 1000x faster in some cases). It is still one to two order of magnitudes + slower than binary tell(). + - - Issue 10882: Add os.sendfile function. ++- Issue #10882: Add os.sendfile function. + +- Issue #10868: Allow usage of the register method of an ABC as a class + decorator. + - Issue #11224: Fixed a regression in tarfile that affected the file-like objects returned by TarFile.extractfile() regarding performance, memory consumption and failures with the stream interface.