Lines Matching refs:xreadlines
142 - Bug #1535182: really test the xreadlines() method of bz2 objects.
2555 - The mpz, rotor, and xreadlines modules, all deprecated in earlier
5129 to "for line in file:"; the xreadlines method and corresponding
5258 - file.xreadlines() now raises a ValueError if the file is closed:
5259 Previously, an xreadlines object was returned which would raise
5260 a ValueError when the xreadlines.next() method was called.
5331 - The xreadlines module is slated for obsolescence.
8106 - File objects have a new method, xreadlines(). This is the fastest
8109 for line in file.xreadlines():
8112 See the xreadlines module (mentioned below) for how to do this for
8115 - Even if you don't use file.xreadlines(), you may expect a speedup on
8221 - A new module xreadlines was added. This exports a single factory
8222 function, xreadlines(). The intention is that this code is the
8226 import xreadlines
8227 for line in xreadlines.xreadlines(file):
8234 for line in file.xreadlines():