Searched refs:xreadlines (Results 1 – 17 of 17) sorted by relevance
/external/skia/tools/svg/ |
D | svg_downloader.py | 20 for url in f.xreadlines():
|
/external/python/cpython2/Doc/library/ |
D | bz2.rst | 108 .. method:: xreadlines() 111 performance optimizations previously implemented in the :mod:`xreadlines`
|
D | 2to3.rst | 428 .. 2to3fixer:: xreadlines 430 Changes ``for x in file.xreadlines()`` to ``for x in file``.
|
D | stdtypes.rst | 2561 .. method:: file.xreadlines()
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialutil.py | 196 def xreadlines(self, sizehint=None): member in FileLike
|
/external/python/cpython2/Lib/ |
D | tempfile.py | 636 def xreadlines(self, *args): member in SpooledTemporaryFile
|
/external/python/cpython2/Lib/test/ |
D | test_py3kwarn.py | 248 self.assertWarning(f.xreadlines(), w, expected)
|
D | test_tempfile.py | 920 self.assertEqual(list(f.xreadlines()), [b'abc\n'] * 5) 924 self.assertEqual(list(f.xreadlines()), [b'abc\n'] * 5 + [b'x\n', b'y'])
|
D | test_bz2.py | 137 self.assertEqual(list(bz2f.xreadlines()), sio.readlines())
|
/external/skia/ |
D | PRESUBMIT.py | 122 for line in f.xreadlines():
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.1.rst | 723 Epler. The new method, :meth:`xreadlines`, is similar to the existing 724 :func:`xrange` built-in. :func:`xreadlines` returns an opaque sequence object 729 for line in sys.stdin.xreadlines():
|
D | 2.3.rst | 1072 * The :meth:`xreadlines` method of file objects, introduced in Python 2.1, is no 1074 :meth:`xreadlines` was originally introduced as a faster way to loop over all
|
D | 2.4.rst | 1314 * The :mod:`mpz`, :mod:`rotor`, and :mod:`xreadlines` modules have been
|
/external/python/cpython2/PC/os2emx/ |
D | README.os2emx | 641 27. As of Python 2.4, the mpz, rotor and xreadlines modules have been
|
/external/python/cpython2/Misc/ |
D | HISTORY | 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 [all …]
|
D | NEWS | 3406 xreadlines method now work for unrolled files. encoding and newlines 9678 - Issue #2353: file.xreadlines() now emits a Py3k warning.
|
/external/python/cpython2/ |
D | README | 549 time, timing, xreadlines
|