diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 18:50:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 18:50:45 (GMT) |
commit | c7f490c8b19d5458d692f243279f7ad898f13ec4 (patch) | |
tree | 00696e8d0c669e8d4a413ecb04a8dae715aa59da /Misc | |
parent | 639098c5911b88f03972e7fd44fe230a651cbc9b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |