From: Serhiy Storchaka Date: Sat, 8 Oct 2016 19:07:45 +0000 (+0300) Subject: Merge from 3.6. X-Git-Tag: v3.7.0a1~2273 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ce1bf43bcb1190d6d6da1282b781861f72c92bf;p=thirdparty%2FPython%2Fcpython.git Merge from 3.6. --- 0ce1bf43bcb1190d6d6da1282b781861f72c92bf diff --cc Misc/NEWS index 2afaf83aeddd,e96581b8b18e..dfbbf78d0636 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,8 -10,13 +10,11 @@@ What's New in Python 3.7.0 alpha Core and Builtins ----------------- + - Issue #28376: The type of long range iterator is now registered as Iterator. + Patch by Oren Milman. + - 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. + type now is disallowed. Calling iter() on range instance is the only way. Patch by Oren Milman. - Issue #26906: Resolving special methods of uninitialized type now causes