]> granicus.if.org Git - python/commitdiff
bpo-30306: Add missing NEWS entry (GH-5374)
authorNick Coghlan <ncoghlan@gmail.com>
Sun, 28 Jan 2018 05:14:30 +0000 (15:14 +1000)
committerGitHub <noreply@github.com>
Sun, 28 Jan 2018 05:14:30 +0000 (15:14 +1000)
Misc/NEWS.d/next/Library/2018-01-28-14-10-51.bpo-30306.TmKMXi.rst [new file with mode: 0644]

diff --git a/Misc/NEWS.d/next/Library/2018-01-28-14-10-51.bpo-30306.TmKMXi.rst b/Misc/NEWS.d/next/Library/2018-01-28-14-10-51.bpo-30306.TmKMXi.rst
new file mode 100644 (file)
index 0000000..65df2cd
--- /dev/null
@@ -0,0 +1,4 @@
+contextlib.contextmanager now releases the arguments passed to the
+underlying generator as soon as the context manager is entered. Previously
+it would keep them alive for as long as the context manager was alive, even
+when not being used as a function decorator. Patch by Martin Teichmann.