summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-05 00:59:45 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-05 00:59:45 +0100
commit59061a7ae2cf53961ef6cb24becae7a0344f3fa9 (patch)
treececcfdb4cc8ba2903337a841f1233b7484f8da83
parent97a31fe993354b79b4821c742f5cde14dd5f5021 (diff)
downloadtrollius-59061a7ae2cf53961ef6cb24becae7a0344f3fa9.tar.gz
update changelog
-rw-r--r--doc/changelog.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index f584502..18aff80 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -7,6 +7,16 @@ Version 1.0.4 (development version)
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.
+* 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.
* BaseSelectorEventLoop.close() now closes the self-pipe before calling the
parent close() method. If the event loop is already closed, the self-pipe is
not unregistered from the selector.