summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-13 00:04:50 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-13 00:04:50 +0100
commitaacdee795a99c396af7c99a66cd54808626debfa (patch)
tree53099e7fe2fcedf3b8001eeef2e32788275efba8
parentee60171deba6b3f817c5517c593de49c843fd298 (diff)
downloadtrollius-aacdee795a99c396af7c99a66cd54808626debfa.tar.gz
update changelog
-rw-r--r--doc/changelog.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index d402d60..8b92607 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -27,6 +27,14 @@ Major bugfixes:
Other changes:
+* On Python 3.5, windows_utils.socketpair is now an alias to socket.socketpair.
+* Enhance protocol representation: add "closed" or "closing" info.
+* Reuse socket.socketpair() on Windows if available
+* run_forever() now consumes BaseException of the temporary task. If the
+ coroutine raised a BaseException, consume the exception to not log a warning.
+ The caller doesn't have access to the local task.
+* Python issue 22448: cleanup _run_once(), only iterate once to remove delayed
+ calls that were cancelled.
* Return destructor logs the source traceback in debug mode
* Python issue #22448: Improve cancelled timer callback handles cleanup. Patch
by Joshua Moore-Oliva.