commit | d64fc39a8010959f85c81fb33df46c9aaf71ba0e | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Nov 05 15:18:51 2011 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Nov 05 15:18:51 2011 -0400 |
tree | 9337e218b94fe6b322c2c43a011137cb48ca2e19 | |
parent | 878ce389a08594a805cf382a73414be02143396c [diff] [blame] |
news note about range introspection
diff --git a/Misc/NEWS b/Misc/NEWS index 43cffba..8561c48 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,8 @@ 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)