From: Benjamin Peterson <benjamin@python.org> Date: Sat, 5 Nov 2011 19:18:51 +0000 (-0400) Subject: news note about range introspection X-Git-Tag: v3.3.0a1~935^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d64fc39a8010959f85c81fb33df46c9aaf71ba0e;p=python news note about range introspection --- 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)