HomeSort by relevance Sort by last modified time
    Searched refs:TextIOWrapper (Results 1 - 25 of 46) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
io.py 20 of streams into text. TextIOWrapper, which extends it, is a buffered text
56 "BufferedRandom", "TextIOBase", "TextIOWrapper",
66 IncrementalNewlineDecoder, TextIOWrapper)
96 for klass in (StringIO, TextIOWrapper):
_pyio.py 142 'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
223 text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
io.py 20 of streams into text. TextIOWrapper, which extends it, is a buffered text
47 "BufferedRandom", "TextIOBase", "TextIOWrapper",
57 IncrementalNewlineDecoder, TextIOWrapper)
88 for klass in (StringIO, TextIOWrapper):
  /external/python/cpython2/Lib/
io.py 20 of streams into text. TextIOWrapper, which extends it, is a buffered text
47 "BufferedRandom", "TextIOBase", "TextIOWrapper",
57 IncrementalNewlineDecoder, TextIOWrapper)
88 for klass in (StringIO, TextIOWrapper):
  /external/python/cpython3/Lib/distutils/tests/
test_log.py 18 stdout = io.TextIOWrapper(io.BytesIO(),
20 stderr = io.TextIOWrapper(io.BytesIO(),
  /external/python/cpython3/Lib/
io.py 20 of streams into text. TextIOWrapper, which extends it, is a buffered text
47 "BufferedRandom", "TextIOBase", "TextIOWrapper",
57 IncrementalNewlineDecoder, TextIOWrapper)
90 for klass in (StringIO, TextIOWrapper):
getpass.py 51 input = io.TextIOWrapper(tty)
bz2.py 302 io.TextIOWrapper instance with the specified encoding, error
321 return io.TextIOWrapper(binary_file, encoding, errors, newline)
lzma.py 285 io.TextIOWrapper instance with the specified encoding, error
305 return io.TextIOWrapper(binary_file, encoding, errors, newline)
cgi.py 34 from io import StringIO, BytesIO, TextIOWrapper
151 if isinstance(fp, TextIOWrapper):
340 1. a TextIOWrapper object
414 elif isinstance(fp, TextIOWrapper):
    [all...]
os.py     [all...]
tokenize.py 30 from io import TextIOWrapper
451 text = TextIOWrapper(buffer, encoding, line_buffering=True)
  /external/python/cpython3/Lib/email/
parser.py 10 from io import StringIO, TextIOWrapper
111 fp = TextIOWrapper(fp, encoding='ascii', errors='surrogateescape')
  /external/python/cpython3/Lib/test/
test_io.py 71 """Get the default TextIOWrapper chunk size"""
452 return self.TextIOWrapper(UnseekableReader(), "ascii")
458 return self.TextIOWrapper(UnseekableWriter(), "ascii")
    [all...]
test_getpass.py 4 from io import BytesIO, StringIO, TextIOWrapper
74 stream = TextIOWrapper(BytesIO(), encoding="ascii")
100 mock.patch('io.TextIOWrapper') as textio:
114 mock.patch('io.TextIOWrapper'), \
126 mock.patch('io.TextIOWrapper') as textio, \
141 mock.patch('io.TextIOWrapper'), \
test_cmd_line_script.py 538 text = io.TextIOWrapper(io.BytesIO(stderr), 'ascii').read()
550 text = io.TextIOWrapper(io.BytesIO(stderr), 'ascii').read()
561 text = io.TextIOWrapper(io.BytesIO(stderr), "ascii").read()
  /external/python/cpython2/Lib/test/
test_io.py 61 """Get the default TextIOWrapper chunk size"""
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py 51 """Get the default TextIOWrapper chunk size"""
    [all...]
  /external/yapf/yapf/yapflib/
py3compat.py 39 wrapper = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8')
  /external/python/cpython3/Lib/importlib/
resources.py 8 from io import BytesIO, TextIOWrapper
125 return TextIOWrapper(reader.open_resource(resource), encoding, errors)
147 return TextIOWrapper(BytesIO(data), encoding, errors)
  /external/python/setuptools/setuptools/
dist.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
saxutils.py 84 # Keep the original file open when the TextIOWrapper is
94 # TextIOWrapper uses this methods to determine
100 # wrap a binary writer with TextIOWrapper
106 class _UnbufferedTextIOWrapper(io.TextIOWrapper):
  /external/fonttools/Lib/fontTools/misc/
etree.py 284 # wrap a binary writer with TextIOWrapper
298 # TextIOWrapper uses this methods to determine
304 wrapper = io.TextIOWrapper(
313 # Keep the original file open when the TextIOWrapper and
  /external/python/cpython2/Lib/xml/sax/
saxutils.py 84 # Keep the original file open when the TextIOWrapper is
94 # TextIOWrapper uses this methods to determine
100 # wrap a binary writer with TextIOWrapper
106 class _UnbufferedTextIOWrapper(io.TextIOWrapper):
  /external/python/cpython3/Lib/xml/sax/
saxutils.py 85 # wrap a binary writer with TextIOWrapper
87 # Keep the original file open when the TextIOWrapper is
102 # TextIOWrapper uses this methods to determine
108 return io.TextIOWrapper(buffer, encoding=encoding,

Completed in 1783 milliseconds

1 2