#6814: remove traces of xrange().

This commit is contained in:
Georg Brandl 2009-09-01 07:34:27 +00:00
parent a4c05a26a7
commit c9a5a0e165
5 changed files with 8 additions and 11 deletions

View file

@ -396,7 +396,7 @@ by file descriptors.
Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
ignoring errors. Availability: Unix, Windows. Equivalent to::
for fd in xrange(fd_low, fd_high):
for fd in range(fd_low, fd_high):
try:
os.close(fd)
except OSError: