]> granicus.if.org Git - python/commitdiff
Issue #22351: The nntplib.NNTP constructor no longer leaves the connection
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 21 Mar 2015 07:41:19 +0000 (09:41 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 21 Mar 2015 07:41:19 +0000 (09:41 +0200)
and socket open until the garbage collector cleans them up.  Patch by
Martin Panter.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 0f098c5e6d37c6954cf2e1b6daa9d2e7813a9b80,a4ebd72b4899b4c1c8a9e9664a1046f53e42a4ad..5053fc59f938504dca3e49c7580c712dd31ea6ce
+++ b/Misc/NEWS
@@@ -23,19 -18,10 +23,23 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #22351: The nntplib.NNTP constructor no longer leaves the connection
+   and socket open until the garbage collector cleans them up.  Patch by
+   Martin Panter.
 +- Issue #23715: :func:`signal.sigwaitinfo` and :func:`signal.sigtimedwait` are
 +  now retried when interrupted by a signal not in the *sigset* parameter, if
 +  the signal handler does not raise an exception. signal.sigtimedwait()
 +  recomputes the timeout with a monotonic clock when it is retried.
 +
 +- Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and
 +  codecs, that accepted only read-only bytes-like object now accept writable
 +  bytes-like object too.
 +
 +- Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now
 +  retried with the recomputed delay, except if the signal handler raises an
 +  exception (PEP 475).
 +
  - Issue #23136: _strptime now uniformly handles all days in week 0, including
    Dec 30 of previous year.  Based on patch by Jim Carroll.