summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-09-25 16:09:09 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-09-25 16:09:09 (GMT)
commit1cfd36fdd789d443a0bfe61ca5799e047331aae8 (patch)
tree5b2c4ea6e0506c878812143c22dcf5f06ceb59d6 /Misc
parentbca9acf7ca9106f082601e72b9da7cea6b33b1f0 (diff)
downloadcpython-1cfd36fdd789d443a0bfe61ca5799e047331aae8.zip
cpython-1cfd36fdd789d443a0bfe61ca5799e047331aae8.tar.gz
cpython-1cfd36fdd789d443a0bfe61ca5799e047331aae8.tar.bz2
asyncio: Improve canceled timer handles cleanup. Closes issue #22448.
Patch by Joshua Moore-Oliva.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1d0a676..9cb9e23 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
+- Issue #22448: Improve canceled timer handles cleanup to prevent
+ unbound memory usage. Patch by Joshua Moore-Oliva.
+
- Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
used in the with statement in generator.