]> granicus.if.org Git - python/commitdiff
news note about range introspection
authorBenjamin Peterson <benjamin@python.org>
Sat, 5 Nov 2011 19:18:51 +0000 (15:18 -0400)
committerBenjamin Peterson <benjamin@python.org>
Sat, 5 Nov 2011 19:18:51 +0000 (15:18 -0400)
Misc/NEWS

index 43cffbafafafa023b4101fe3d35fc780f1d10663..8561c48c246e573b322f31a106c4b846f9d110ad 100644 (file)
--- 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)