diff options
author | Guido van Rossum <guido@python.org> | 2001-07-05 14:46:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-07-05 14:46:25 (GMT) |
commit | 643d3916d5245afcc6d1031ef7bd77ac13cc33f1 (patch) | |
tree | c30748f4a0794d290279fdeaa560f4939b5074d4 | |
parent | cfd829eefca1c5b971a27306a09dbb6704d96e8d (diff) | |
download | cpython-643d3916d5245afcc6d1031ef7bd77ac13cc33f1.zip cpython-643d3916d5245afcc6d1031ef7bd77ac13cc33f1.tar.gz cpython-643d3916d5245afcc6d1031ef7bd77ac13cc33f1.tar.bz2 |
News about xrange().
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |