Lines Matching refs:xreadlines
17526 - Bug #1535182: really test the xreadlines() method of bz2 objects.
19939 - The mpz, rotor, and xreadlines modules, all deprecated in earlier
22513 to "for line in file:"; the xreadlines method and corresponding
22642 - file.xreadlines() now raises a ValueError if the file is closed:
22643 Previously, an xreadlines object was returned which would raise
22644 a ValueError when the xreadlines.next() method was called.
22715 - The xreadlines module is slated for obsolescence.
25485 - File objects have a new method, xreadlines(). This is the fastest
25488 for line in file.xreadlines():
25491 See the xreadlines module (mentioned below) for how to do this for
25494 - Even if you don't use file.xreadlines(), you may expect a speedup on
25600 - A new module xreadlines was added. This exports a single factory
25601 function, xreadlines(). The intention is that this code is the
25605 import xreadlines
25606 for line in xreadlines.xreadlines(file):
25613 for line in file.xreadlines():