]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix some issue references in NEWS
authorÉric Araujo <merwok@netwok.org>
Mon, 21 Mar 2011 02:18:58 +0000 (03:18 +0100)
committerÉric Araujo <merwok@netwok.org>
Mon, 21 Mar 2011 02:18:58 +0000 (03:18 +0100)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index ba1d4244c5e63b099bab92f84eb15e664e8ba587,0bf7550864b1c8acd6222c207875693f2d36866f..992ef8f54a3335e887e89cc0b85827abec8637d9
+++ 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 8594: ftplib now provides a source_address parameter to specify which
 +- 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
 +  (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.
  
  - 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 10882: Add os.sendfile function.
 +- 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 #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.