From: Guido van Rossum Date: Thu, 5 Jul 2001 14:46:25 +0000 (+0000) Subject: News about xrange(). X-Git-Tag: v2.2a3~1339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=643d3916d5245afcc6d1031ef7bd77ac13cc33f1;p=thirdparty%2FPython%2Fcpython.git News about xrange(). --- diff --git a/Misc/NEWS b/Misc/NEWS index 8cd6c4d7aa16..ba39289578d5 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -138,6 +138,10 @@ Core Library +- The xrange() object is simplified: it no longer supports slicing, + repetition, comparisons, efficient 'in' checking, the tolist() + method, or the start, stop and step attributes. See PEP 260. + - A new function fnmatch.filter to filter lists of file names was added. - calendar.py uses month and day names based on the current locale.