From d64fc39a8010959f85c81fb33df46c9aaf71ba0e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 5 Nov 2011 15:18:51 -0400 Subject: [PATCH] news note about range introspection --- Misc/NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 43cffbafafa..8561c48c246 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)