From: Benjamin Peterson 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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d64fc39a8010959f85c81fb33df46c9aaf71ba0e;p=thirdparty%2FPython%2Fcpython.git news note about range introspection --- diff --git a/Misc/NEWS b/Misc/NEWS index 43cffbafafaf..8561c48c246e 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)