summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-08 18:50:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-08 18:50:45 (GMT)
commitc7f490c8b19d5458d692f243279f7ad898f13ec4 (patch)
tree00696e8d0c669e8d4a413ecb04a8dae715aa59da /Misc
parent639098c5911b88f03972e7fd44fe230a651cbc9b (diff)
downloadcpython-c7f490c8b19d5458d692f243279f7ad898f13ec4.zip
cpython-c7f490c8b19d5458d692f243279f7ad898f13ec4.tar.gz
cpython-c7f490c8b19d5458d692f243279f7ad898f13ec4.tar.bz2
Issue #28376: Creating instances of range_iterator by calling range_iterator
type now is deprecated. Patch by Oren Milman.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cde11ac..fb6e3b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 2
Core and Builtins
-----------------
+- Issue #28376: Creating instances of range_iterator by calling range_iterator
+ type now is deprecated. Patch by Oren Milman.
+
- Issue #28376: The constructor of range_iterator now checks that step is not 0.
Patch by Oren Milman.