diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-11-05 15:18:51 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-11-05 15:18:51 -0400 |
commit | d64fc39a8010959f85c81fb33df46c9aaf71ba0e (patch) | |
tree | 9337e218b94fe6b322c2c43a011137cb48ca2e19 | |
parent | 878ce389a08594a805cf382a73414be02143396c (diff) | |
download | cpython-git-d64fc39a8010959f85c81fb33df46c9aaf71ba0e.tar.gz |
news note about range introspection
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |