summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-11-05 15:18:51 -0400
committerBenjamin Peterson <benjamin@python.org>2011-11-05 15:18:51 -0400
commitd64fc39a8010959f85c81fb33df46c9aaf71ba0e (patch)
tree9337e218b94fe6b322c2c43a011137cb48ca2e19
parent878ce389a08594a805cf382a73414be02143396c (diff)
downloadcpython-git-d64fc39a8010959f85c81fb33df46c9aaf71ba0e.tar.gz
news note about range introspection
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 43cffbafaf..8561c48c24 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #9896: Add start, stop, and step attributes to range objects.
+
- Issue #13343: Fix a SystemError when a lambda expression uses a global
variable in the default value of a keyword-only argument:
(lambda *, arg=GLOBAL_NAME: None)