summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-06-23 09:52:05 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-06-23 09:52:05 (GMT)
commit04e2e3f2310964bb353cc85e4ebedf2391109118 (patch)
tree9fa80195784e0db02237898ebc272c5d23971a69 /Misc
parent766e62266e72d7586e8cbf74213a3935a974ef14 (diff)
downloadcpython-04e2e3f2310964bb353cc85e4ebedf2391109118.zip
cpython-04e2e3f2310964bb353cc85e4ebedf2391109118.tar.gz
cpython-04e2e3f2310964bb353cc85e4ebedf2391109118.tar.bz2
Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing of generator state updates
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 0c69f35..37a0dee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #15153: Added inspect.getgeneratorlocals to simplify white box
+ testing of generator state updates
+
- Issue #13062: Added inspect.getclosurevars to simplify testing stateful
closures