summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-12 15:38:39 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-12 15:38:39 +0100
commitb30e872a710637f8092f87c8bb4a5d07afe57284 (patch)
tree8bc41c961e539f3117b7b575570ce8b11493f54e
parent4250687d6f157989315d74470a23e278deff433d (diff)
downloadtrollius-b30e872a710637f8092f87c8bb4a5d07afe57284.tar.gz
Update changelog
-rw-r--r--doc/changelog.rst14
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index 18aff80..5c09e17 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -10,10 +10,20 @@ Changes:
* Python issue #22922: create_task(), call_at(), call_soon(),
call_soon_threadsafe() and run_in_executor() now raise an error if the event
loop is closed. Initial patch written by Torsten Landschoff.
-* Initialize more Future and Task attributes in the class definition to avoid
- attribute errors in destructors.
* Python issue #22921: Don't require OpenSSL SNI to pass hostname to ssl
functions. Patch by Donald Stufft.
+
+Bugfixes:
+
+* Python issue #23009: selectors, make sure EpollSelecrtor.select() works when
+ no file descriptor is registered.
+* Python issue #22922: Fix ProactorEventLoop.close(). Call
+ _stop_accept_futures() before sestting the _closed attribute, otherwise
+ call_soon() raises an error.
+* Python issue #22429: Fix EventLoop.run_until_complete(), don't stop the event
+ loop if a BaseException is raised, because the event loop is already stopped.
+* Initialize more Future and Task attributes in the class definition to avoid
+ attribute errors in destructors.
* Python issue #22685: Set the transport of stdout and stderr StreamReader
objects in the SubprocessStreamProtocol. It allows to pause the transport to
not buffer too much stdout or stderr data.