summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-05 20:00:14 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-05 20:00:17 (GMT)
commit7d7cee9f64a03896033a3ec06dbd607abeaf8a22 (patch)
treea7712eebd8254348b6ecd52baef039b656dd663d /Misc
parent6ab96e41bd917784e6cf60bd0204a84996ddfa0f (diff)
parentd64fc39a8010959f85c81fb33df46c9aaf71ba0e (diff)
downloadcpython-7d7cee9f64a03896033a3ec06dbd607abeaf8a22.zip
cpython-7d7cee9f64a03896033a3ec06dbd607abeaf8a22.tar.gz
cpython-7d7cee9f64a03896033a3ec06dbd607abeaf8a22.tar.bz2
Merge heads
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 47da819..06551c0 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)