summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-10-02 16:45:22 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-10-02 16:45:22 +0200
commitbe7b51cce955ffd763bd316dbac7bf539fb5a6c9 (patch)
tree6818a79629e794c0cc01286ae78c1af70792378c
parent71ee4b6f9d6afc1d93ddc3b22929af36d6dabe4b (diff)
downloadtrollius-be7b51cce955ffd763bd316dbac7bf539fb5a6c9.tar.gz
Update the changelog
-rw-r--r--doc/changelog.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index 3c007b2..f11b4fd 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -17,6 +17,7 @@ Major changes:
Major bugfixes:
+* Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect().
* Tulip issue #201: Fix a race condition in wait_for(). Don't raise a
TimeoutError if we reached the timeout and the future completed in the same
iteration of the event loop. A side effect of the bug is that Queue.get()
@@ -26,6 +27,14 @@ Major bugfixes:
Other changes:
+* Python issue #22448: Improve cancelled timer callback handles cleanup. Patch
+ by Joshua Moore-Oliva.
+* Python issue #22369: Change "context manager protocol" to "context management
+ protocol". Patch written by Serhiy Storchaka <storchaka@gmail.com>.
+* Tulip issue #206: In debug mode, keep the callback in the representation of
+ Handle and TimerHandle after cancel().
+* Tulip issue #207: test_tasks: Fix test_env_var_debug() to use correct asyncio
+ module.
* runtests.py: display a message to mention if tests are run in debug or
release mode
* Tulip issue #200: Log errors in debug mode instead of simply ignoring them.