mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00

The main io module now uses the C implementation. The Python one still exists in Lib/_pyio.py for ease of testing new features and usefulness to other implementers. The rewrite was done by Antoine Pitrou and Amaury Forgeot d'Arc. I was slightly helpful at the end. :) Following are the log messages from the io-c branch: Merged revisions 68683-68685,68687-68689,68693,68704,68741-68743,68745,68747,68752-68754,68756,68758,68812,68816-68817,68820-68822,68824-68825,68828,68876-68877,69037,69044,69104,69115,69194,69626-69629,69636,69638,69641-69642,69644-69654,69656-69661,69671,69677,69812-69815,69817,69827-69830,69839,69841-69845,69848,69850,69852,69854,69860,69865-69866,69868,69872-69873,69885,69888,69891-69893,69911,69913-69916,69963,70033,70035,70038,70041-70048,70067-70070,70075,70112,70133,70135,70140 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/io-c ........ r68683 | antoine.pitrou | 2009-01-17 17:13:48 -0600 (Sat, 17 Jan 2009) | 3 lines Merge in changes from the io-c sandbox. Tests will follow in separate commits. ........ r68684 | antoine.pitrou | 2009-01-17 17:17:26 -0600 (Sat, 17 Jan 2009) | 3 lines Fixes and additions to test_io.py ........ r68685 | antoine.pitrou | 2009-01-17 17:22:04 -0600 (Sat, 17 Jan 2009) | 1 line Fix test_fileio ........ r68687 | antoine.pitrou | 2009-01-17 17:35:11 -0600 (Sat, 17 Jan 2009) | 3 lines Add dependency to _iomodule.h for the various C sources ........ r68688 | antoine.pitrou | 2009-01-17 17:38:18 -0600 (Sat, 17 Jan 2009) | 3 lines These precautions are not needed anymore! ........ r68689 | antoine.pitrou | 2009-01-17 17:41:48 -0600 (Sat, 17 Jan 2009) | 3 lines Fix another test ........ r68693 | antoine.pitrou | 2009-01-17 17:49:58 -0600 (Sat, 17 Jan 2009) | 3 lines Fix test_uu (which was using private attributes of TextIOWrapper) ........ r68704 | antoine.pitrou | 2009-01-17 18:45:29 -0600 (Sat, 17 Jan 2009) | 3 lines Most io sources are Py_ssize_t-clean (I don't know about bytesio and stringio) ........ r68741 | antoine.pitrou | 2009-01-18 15:20:30 -0600 (Sun, 18 Jan 2009) | 3 lines Check return type in TextIOWrapper.__next__ ........ r68742 | antoine.pitrou | 2009-01-18 15:28:48 -0600 (Sun, 18 Jan 2009) | 4 lines Make binary buffered readline and iteration much faster (8x as fast as the IOBase generic implementation) ........ r68743 | antoine.pitrou | 2009-01-18 15:47:47 -0600 (Sun, 18 Jan 2009) | 3 lines Reinsert test_io_after_close (was removed by mistake) ........ r68745 | antoine.pitrou | 2009-01-18 16:16:06 -0600 (Sun, 18 Jan 2009) | 3 lines Add read, read1 and write methods to BufferedIOBase ........ r68747 | antoine.pitrou | 2009-01-18 16:35:58 -0600 (Sun, 18 Jan 2009) | 3 lines Kill test failure ........ r68752 | amaury.forgeotdarc | 2009-01-18 17:05:43 -0600 (Sun, 18 Jan 2009) | 3 lines Fix a segfault when e.g a BufferedReader is created with a FileIO in read mode. ........ r68753 | antoine.pitrou | 2009-01-18 17:13:09 -0600 (Sun, 18 Jan 2009) | 3 lines Add truncate() to text IO objects ........ r68754 | antoine.pitrou | 2009-01-18 17:51:08 -0600 (Sun, 18 Jan 2009) | 3 lines Remove IOBase.__del__ and replace it with custom code with tp_dealloc ........ r68756 | antoine.pitrou | 2009-01-18 18:10:16 -0600 (Sun, 18 Jan 2009) | 3 lines Remove irrelevant comment. ........ r68758 | antoine.pitrou | 2009-01-18 18:36:16 -0600 (Sun, 18 Jan 2009) | 3 lines in importlib:_fileio._FileIO -> _io.FileIO ........ r68812 | antoine.pitrou | 2009-01-20 14:15:51 -0600 (Tue, 20 Jan 2009) | 3 lines Add garbage collection support to FileIO objects ........ r68816 | antoine.pitrou | 2009-01-20 14:56:28 -0600 (Tue, 20 Jan 2009) | 3 lines Add GC support to Buffered and Text IO objects ........ r68817 | antoine.pitrou | 2009-01-20 15:19:45 -0600 (Tue, 20 Jan 2009) | 3 lines Add some file headers ........ r68820 | antoine.pitrou | 2009-01-20 15:29:59 -0600 (Tue, 20 Jan 2009) | 3 lines Add class TextIOBase ........ r68821 | antoine.pitrou | 2009-01-20 15:36:16 -0600 (Tue, 20 Jan 2009) | 3 lines Add properties to TextIOBase ........ r68822 | antoine.pitrou | 2009-01-20 15:41:19 -0600 (Tue, 20 Jan 2009) | 3 lines Disable the pure Python TextIOBase class, and inject C the implementation instead ........ r68824 | antoine.pitrou | 2009-01-20 16:36:28 -0600 (Tue, 20 Jan 2009) | 3 lines Fix two leaks ........ r68825 | antoine.pitrou | 2009-01-20 16:38:29 -0600 (Tue, 20 Jan 2009) | 3 lines FileIO.name is just a plain attribute, we can set it directly ........ r68828 | antoine.pitrou | 2009-01-20 17:06:33 -0600 (Tue, 20 Jan 2009) | 3 lines Speed up closed checks on text IO objects. Good for a 25% speedup on small ops. ........ r68876 | antoine.pitrou | 2009-01-23 17:01:25 -0600 (Fri, 23 Jan 2009) | 3 lines Two typos ........ r68877 | antoine.pitrou | 2009-01-23 18:13:20 -0600 (Fri, 23 Jan 2009) | 3 lines Remove two unused functions ........ r69037 | amaury.forgeotdarc | 2009-01-27 17:10:25 -0600 (Tue, 27 Jan 2009) | 2 lines Update the win32 project files ........ r69044 | antoine.pitrou | 2009-01-27 18:51:07 -0600 (Tue, 27 Jan 2009) | 3 lines Improve heuristic in IncrementalNewlineDecoder + some micro-optimizations ........ r69104 | antoine.pitrou | 2009-01-29 15:23:42 -0600 (Thu, 29 Jan 2009) | 3 lines Fix some crashers found by Victor ........ r69115 | hirokazu.yamamoto | 2009-01-29 20:36:28 -0600 (Thu, 29 Jan 2009) | 1 line Updated VC6 project file. ........ r69194 | antoine.pitrou | 2009-02-01 16:57:18 -0600 (Sun, 01 Feb 2009) | 3 lines Fix downcasting warnings in 32-bit mode with 64-bit offsets (Windows) ........ r69626 | benjamin.peterson | 2009-02-14 17:33:34 -0600 (Sat, 14 Feb 2009) | 1 line only catch AttributeError and UnsupportedOperation ........ r69627 | benjamin.peterson | 2009-02-14 21:35:28 -0600 (Sat, 14 Feb 2009) | 1 line give the IO module its own state and store the os and locale modules in it ........ r69628 | benjamin.peterson | 2009-02-14 22:08:32 -0600 (Sat, 14 Feb 2009) | 1 line put interned strings in the module state structure ........ r69629 | benjamin.peterson | 2009-02-14 22:15:29 -0600 (Sat, 14 Feb 2009) | 1 line put UnsupportedOperation in the module state ........ r69636 | benjamin.peterson | 2009-02-15 08:31:42 -0600 (Sun, 15 Feb 2009) | 1 line dealloc unsupported_operation ........ r69638 | benjamin.peterson | 2009-02-15 09:24:45 -0600 (Sun, 15 Feb 2009) | 1 line actually test the C implementation ........ r69641 | benjamin.peterson | 2009-02-15 10:12:37 -0600 (Sun, 15 Feb 2009) | 5 lines make interned strings globals again ;( putting them in the module state was asking for trouble when the module was dealloced before the classes in it were ........ r69642 | benjamin.peterson | 2009-02-15 10:19:45 -0600 (Sun, 15 Feb 2009) | 1 line actually test the python implementations ........ r69644 | antoine.pitrou | 2009-02-15 11:59:30 -0600 (Sun, 15 Feb 2009) | 3 lines Fix memory leak in destructor when a Python class inherits from IOBase (or an IOBase-derived type) ........ r69645 | antoine.pitrou | 2009-02-15 12:23:26 -0600 (Sun, 15 Feb 2009) | 3 lines Add a warning about the embarassing state of IOBase finalization ........ r69646 | antoine.pitrou | 2009-02-15 13:14:42 -0600 (Sun, 15 Feb 2009) | 3 lines Fix opening of 8-bit filenames with FileIO ........ r69647 | antoine.pitrou | 2009-02-15 13:20:22 -0600 (Sun, 15 Feb 2009) | 3 lines Fix leak in FileIO constructor ........ r69648 | antoine.pitrou | 2009-02-15 13:58:16 -0600 (Sun, 15 Feb 2009) | 3 lines Fix some refleaks ........ r69649 | antoine.pitrou | 2009-02-15 14:05:13 -0600 (Sun, 15 Feb 2009) | 3 lines Fix a leak in IOBase.writelines ........ r69650 | antoine.pitrou | 2009-02-15 14:11:56 -0600 (Sun, 15 Feb 2009) | 3 lines Fix memory leak in BufferedWriter.truncate ........ r69651 | antoine.pitrou | 2009-02-15 14:25:34 -0600 (Sun, 15 Feb 2009) | 3 lines Fix a leak in TextIOWrapper.seek ........ r69652 | antoine.pitrou | 2009-02-15 14:26:28 -0600 (Sun, 15 Feb 2009) | 3 lines Unify implementations of truncate for buffered objects ........ r69653 | antoine.pitrou | 2009-02-15 15:15:15 -0600 (Sun, 15 Feb 2009) | 3 lines Fix more leaks in TextIOWrapper ........ r69654 | antoine.pitrou | 2009-02-15 15:21:57 -0600 (Sun, 15 Feb 2009) | 3 lines Smaller chunk size for a faster test ........ r69656 | benjamin.peterson | 2009-02-15 17:29:48 -0600 (Sun, 15 Feb 2009) | 1 line braces make this much clearer ........ r69657 | benjamin.peterson | 2009-02-15 17:46:07 -0600 (Sun, 15 Feb 2009) | 1 line use the correct macro ........ r69658 | antoine.pitrou | 2009-02-15 19:38:59 -0600 (Sun, 15 Feb 2009) | 5 lines Fix crash in test_urllib2_localnet in debug mode. It was due to an HTTPResponse object being revived when calling its close() method in IOBase's tp_dealloc. _PyIOBase_finalize() starts looking scary... ........ r69659 | benjamin.peterson | 2009-02-15 20:55:48 -0600 (Sun, 15 Feb 2009) | 1 line fix segfault on initialization failing ........ r69660 | benjamin.peterson | 2009-02-15 21:09:31 -0600 (Sun, 15 Feb 2009) | 1 line apparently locale.getprefferedencoding() can raise a ImportError, too ........ r69661 | benjamin.peterson | 2009-02-15 21:54:15 -0600 (Sun, 15 Feb 2009) | 1 line it's amazing this worked at all; I was using the wrong structs! ........ r69671 | benjamin.peterson | 2009-02-16 08:38:27 -0600 (Mon, 16 Feb 2009) | 1 line add garbage collection support to bytesio ........ r69677 | benjamin.peterson | 2009-02-16 10:31:03 -0600 (Mon, 16 Feb 2009) | 5 lines reduce ImportError catching code duplication I'm not sure this makes the code clearer with its new gotos, but at least I added a big fat comment ........ r69812 | antoine.pitrou | 2009-02-20 13:50:16 -0600 (Fri, 20 Feb 2009) | 3 lines _StringIO now belongs to the _io modules, rather to its own _stringio module ........ r69813 | antoine.pitrou | 2009-02-20 13:58:22 -0600 (Fri, 20 Feb 2009) | 3 lines Add a test for StringIO properties ........ r69814 | antoine.pitrou | 2009-02-20 14:06:03 -0600 (Fri, 20 Feb 2009) | 3 lines Reimplement a few trivial StringIO functions and properties in C ........ r69815 | antoine.pitrou | 2009-02-20 14:13:11 -0600 (Fri, 20 Feb 2009) | 3 lines Add the line_buffering property to TextIOWrapper, and test for it ........ r69817 | antoine.pitrou | 2009-02-20 14:45:50 -0600 (Fri, 20 Feb 2009) | 4 lines Allow IncrementalNewlineDecoder to take unicode objects as decoding input if the decoder parameter is None This will help rewriting StringIO to C ........ r69827 | antoine.pitrou | 2009-02-20 19:00:30 -0600 (Fri, 20 Feb 2009) | 3 lines Rewrite most of StringIO in C. Some almost empty stubs remain to be converted. ........ r69828 | antoine.pitrou | 2009-02-20 19:09:25 -0600 (Fri, 20 Feb 2009) | 3 lines Plug a leak, and remove an unused string ........ r69829 | benjamin.peterson | 2009-02-20 20:02:28 -0600 (Fri, 20 Feb 2009) | 1 line this assertions makes more sense here ........ r69830 | benjamin.peterson | 2009-02-20 20:03:04 -0600 (Fri, 20 Feb 2009) | 1 line PyModule_AddObject can fail; simplify this code with a macro ........ r69839 | antoine.pitrou | 2009-02-21 12:54:01 -0600 (Sat, 21 Feb 2009) | 3 lines StringIO is now written entirely in C (and blazingly fast) ........ r69841 | benjamin.peterson | 2009-02-21 14:05:40 -0600 (Sat, 21 Feb 2009) | 1 line split the Python implementation of io into another module and rewrite the tests to test both implementations ........ r69842 | benjamin.peterson | 2009-02-21 14:10:00 -0600 (Sat, 21 Feb 2009) | 1 line closed is not a function ........ r69843 | benjamin.peterson | 2009-02-21 14:13:04 -0600 (Sat, 21 Feb 2009) | 1 line fix __all__ test ........ r69844 | benjamin.peterson | 2009-02-21 14:21:24 -0600 (Sat, 21 Feb 2009) | 1 line fix the rest of the Misc tests ........ r69845 | benjamin.peterson | 2009-02-21 14:26:59 -0600 (Sat, 21 Feb 2009) | 1 line RawIOBase is better for FileIO ........ r69848 | benjamin.peterson | 2009-02-21 15:33:53 -0600 (Sat, 21 Feb 2009) | 1 line fix some more tests broken by bag argument validation ........ r69850 | benjamin.peterson | 2009-02-21 16:16:42 -0600 (Sat, 21 Feb 2009) | 1 line make the python IncrementalNewineDecoder support a None decoder ........ r69852 | benjamin.peterson | 2009-02-21 16:36:09 -0600 (Sat, 21 Feb 2009) | 1 line fix a BlockingIOError.characters_written bug ........ r69854 | benjamin.peterson | 2009-02-21 16:49:02 -0600 (Sat, 21 Feb 2009) | 1 line check whence ........ r69860 | benjamin.peterson | 2009-02-21 17:42:50 -0600 (Sat, 21 Feb 2009) | 1 line fix some of these Misbehaving io tests ........ r69865 | benjamin.peterson | 2009-02-21 18:59:52 -0600 (Sat, 21 Feb 2009) | 1 line don't use super here() ........ r69866 | benjamin.peterson | 2009-02-21 19:05:28 -0600 (Sat, 21 Feb 2009) | 1 line use implementation specific classes ........ r69868 | benjamin.peterson | 2009-02-21 22:12:05 -0600 (Sat, 21 Feb 2009) | 1 line use a more DRY friendly approach to injecting module contents into test classes ........ r69872 | antoine.pitrou | 2009-02-22 13:39:45 -0600 (Sun, 22 Feb 2009) | 3 lines Sanitize destructor behaviour of IOBase. Now Python-defined attributes can be accessed from close(). ........ r69873 | antoine.pitrou | 2009-02-22 13:50:14 -0600 (Sun, 22 Feb 2009) | 4 lines Only set the internal fd after it has been checked to be valid (otherwise, the destructor will attempt to close it) ........ r69885 | benjamin.peterson | 2009-02-22 15:30:14 -0600 (Sun, 22 Feb 2009) | 1 line convert some other tests to use both io implementations ........ r69888 | antoine.pitrou | 2009-02-22 17:03:16 -0600 (Sun, 22 Feb 2009) | 3 lines Silence all exceptions when finalizing ........ r69891 | benjamin.peterson | 2009-02-22 17:27:24 -0600 (Sun, 22 Feb 2009) | 1 line convert another test to test both io implementations ........ r69892 | benjamin.peterson | 2009-02-22 17:32:15 -0600 (Sun, 22 Feb 2009) | 1 line help poor people like me to find their io tests (did I miss any?) ........ r69893 | benjamin.peterson | 2009-02-22 17:37:56 -0600 (Sun, 22 Feb 2009) | 1 line put a big note in the test telling people to write tests for both implementations now ........ r69911 | antoine.pitrou | 2009-02-23 13:57:18 -0600 (Mon, 23 Feb 2009) | 3 lines expose DEFAULT_BUFFER_SIZE again (fixes a bunch of test failures) ........ r69913 | antoine.pitrou | 2009-02-23 14:10:30 -0600 (Mon, 23 Feb 2009) | 4 lines Do the cyclic garbage collection tests only on the C version. The Python version is helpless as it uses __del__. ........ r69914 | antoine.pitrou | 2009-02-23 14:21:41 -0600 (Mon, 23 Feb 2009) | 3 lines Adapt test_largefile to test both implementations ........ r69915 | antoine.pitrou | 2009-02-23 14:25:14 -0600 (Mon, 23 Feb 2009) | 3 lines One small failure ........ r69916 | antoine.pitrou | 2009-02-23 14:28:33 -0600 (Mon, 23 Feb 2009) | 3 lines Add a comment, at BP's request ........ r69963 | antoine.pitrou | 2009-02-25 09:42:59 -0600 (Wed, 25 Feb 2009) | 3 lines Add a test of ABC inheritance ........ r70033 | antoine.pitrou | 2009-02-27 15:49:50 -0600 (Fri, 27 Feb 2009) | 3 lines The base classes now are ABCs. ........ r70035 | benjamin.peterson | 2009-02-27 15:57:41 -0600 (Fri, 27 Feb 2009) | 1 line good house keeping ........ r70038 | antoine.pitrou | 2009-02-27 17:05:23 -0600 (Fri, 27 Feb 2009) | 4 lines Make the buffer allocation overflow tests specific to the C implementation, since the Python implementation resizes its buffers when needed rather than allocating them up front. ........ r70041 | benjamin.peterson | 2009-02-27 18:26:12 -0600 (Fri, 27 Feb 2009) | 1 line kill java naming for sanity ........ r70042 | benjamin.peterson | 2009-02-27 18:28:53 -0600 (Fri, 27 Feb 2009) | 2 lines timingTest is superseded by iobench ........ r70043 | antoine.pitrou | 2009-02-27 19:13:50 -0600 (Fri, 27 Feb 2009) | 3 lines Remove the last traces of java naming in test_io ........ r70044 | antoine.pitrou | 2009-02-27 19:18:34 -0600 (Fri, 27 Feb 2009) | 3 lines Better resource cleanup ........ r70045 | antoine.pitrou | 2009-02-27 19:29:00 -0600 (Fri, 27 Feb 2009) | 3 lines Remove dubious uses of super(), and fix one test ........ r70046 | antoine.pitrou | 2009-02-27 19:31:00 -0600 (Fri, 27 Feb 2009) | 3 lines Bump up CHUNK_SIZE (no need to make the Python version look slower than it is) ........ r70047 | benjamin.peterson | 2009-02-27 20:03:26 -0600 (Fri, 27 Feb 2009) | 1 line fix typo ........ r70048 | benjamin.peterson | 2009-02-27 21:35:11 -0600 (Fri, 27 Feb 2009) | 1 line move code to a better place ........ r70067 | benjamin.peterson | 2009-02-28 10:43:20 -0600 (Sat, 28 Feb 2009) | 4 lines 1. make sure to undo buffered read aheads in BufferedRandom.seek() 2. refill the buffer if have <= 0 3. fix the last failing test_io test! ........ r70068 | benjamin.peterson | 2009-02-28 10:57:50 -0600 (Sat, 28 Feb 2009) | 1 line define read1() on the python implementation's BufferedIOBase ........ r70069 | benjamin.peterson | 2009-02-28 11:01:17 -0600 (Sat, 28 Feb 2009) | 1 line document read1() in BufferedIOBase ........ r70070 | benjamin.peterson | 2009-02-28 11:06:42 -0600 (Sat, 28 Feb 2009) | 1 line give credit where credit is due ........ r70075 | antoine.pitrou | 2009-02-28 13:34:59 -0600 (Sat, 28 Feb 2009) | 3 lines Amaury's name ........ r70112 | antoine.pitrou | 2009-03-02 17:11:55 -0600 (Mon, 02 Mar 2009) | 4 lines Looks like this is necessary in order to build cleanly under Windows (someone correct this if it's wrong, I'm no Windows user) ........ r70133 | benjamin.peterson | 2009-03-03 15:23:32 -0600 (Tue, 03 Mar 2009) | 1 line fix test_newline_property on _pyio.StringIO ........ r70135 | benjamin.peterson | 2009-03-03 15:47:30 -0600 (Tue, 03 Mar 2009) | 1 line fix typos and inconsistencies. thanks to Daniel Diniz ........ r70140 | benjamin.peterson | 2009-03-03 16:21:10 -0600 (Tue, 03 Mar 2009) | 1 line add the test from #5266 ........
677 lines
26 KiB
ReStructuredText
677 lines
26 KiB
ReStructuredText
:mod:`io` --- Core tools for working with streams
|
|
=================================================
|
|
|
|
.. module:: io
|
|
:synopsis: Core tools for working with streams.
|
|
.. moduleauthor:: Guido van Rossum <guido@python.org>
|
|
.. moduleauthor:: Mike Verdone <mike.verdone@gmail.com>
|
|
.. moduleauthor:: Mark Russell <mark.russell@zen.co.uk>
|
|
.. moduleauthor:: Antoine Pitrou <solipsis@pitrou.net>
|
|
.. moduleauthor:: Amaury Forgeot d'Arc <amauryfa@gmail.com>
|
|
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
|
|
|
|
The :mod:`io` module provides the Python interfaces to stream handling. The
|
|
builtin :func:`open` function is defined in this module.
|
|
|
|
At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It
|
|
defines the basic interface to a stream. Note, however, that there is no
|
|
separation between reading and writing to streams; implementations are allowed
|
|
to throw an :exc:`IOError` if they do not support a given operation.
|
|
|
|
Extending :class:`IOBase` is :class:`RawIOBase` which deals simply with the
|
|
reading and writing of raw bytes to a stream. :class:`FileIO` subclasses
|
|
:class:`RawIOBase` to provide an interface to files in the machine's
|
|
file system.
|
|
|
|
:class:`BufferedIOBase` deals with buffering on a raw byte stream
|
|
(:class:`RawIOBase`). Its subclasses, :class:`BufferedWriter`,
|
|
:class:`BufferedReader`, and :class:`BufferedRWPair` buffer streams that are
|
|
readable, writable, and both readable and writable.
|
|
:class:`BufferedRandom` provides a buffered interface to random access
|
|
streams. :class:`BytesIO` is a simple stream of in-memory bytes.
|
|
|
|
Another :class:`IOBase` subclass, :class:`TextIOBase`, deals with
|
|
streams whose bytes represent text, and handles encoding and decoding
|
|
from and to strings. :class:`TextIOWrapper`, which extends it, is a
|
|
buffered text interface to a buffered raw stream
|
|
(:class:`BufferedIOBase`). Finally, :class:`StringIO` is an in-memory
|
|
stream for text.
|
|
|
|
Argument names are not part of the specification, and only the arguments of
|
|
:func:`open` are intended to be used as keyword arguments.
|
|
|
|
|
|
Module Interface
|
|
----------------
|
|
|
|
.. data:: DEFAULT_BUFFER_SIZE
|
|
|
|
An int containing the default buffer size used by the module's buffered I/O
|
|
classes. :func:`open` uses the file's blksize (as obtained by
|
|
:func:`os.stat`) if possible.
|
|
|
|
.. function:: open(file[, mode[, buffering[, encoding[, errors[, newline[, closefd=True]]]]]])
|
|
|
|
Open *file* and return a stream. If the file cannot be opened, an
|
|
:exc:`IOError` is raised.
|
|
|
|
*file* is either a string giving the name (and the path if the file isn't in
|
|
the current working directory) of the file to be opened or a file
|
|
descriptor of the file to be opened. (If a file descriptor is given,
|
|
for example, from :func:`os.fdopen`, it is closed when the returned
|
|
I/O object is closed, unless *closefd* is set to ``False``.)
|
|
|
|
*mode* is an optional string that specifies the mode in which the file is
|
|
opened. It defaults to ``'r'`` which means open for reading in text mode.
|
|
Other common values are ``'w'`` for writing (truncating the file if it
|
|
already exists), and ``'a'`` for appending (which on *some* Unix systems,
|
|
means that *all* writes append to the end of the file regardless of the
|
|
current seek position). In text mode, if *encoding* is not specified the
|
|
encoding used is platform dependent. (For reading and writing raw bytes use
|
|
binary mode and leave *encoding* unspecified.) The available modes are:
|
|
|
|
========= ===============================================================
|
|
Character Meaning
|
|
--------- ---------------------------------------------------------------
|
|
``'r'`` open for reading (default)
|
|
``'w'`` open for writing, truncating the file first
|
|
``'a'`` open for writing, appending to the end of the file if it exists
|
|
``'b'`` binary mode
|
|
``'t'`` text mode (default)
|
|
``'+'`` open a disk file for updating (reading and writing)
|
|
``'U'`` universal newline mode (for backwards compatibility; should
|
|
not be used in new code)
|
|
========= ===============================================================
|
|
|
|
The default mode is ``'rt'`` (open for reading text). For binary random
|
|
access, the mode ``'w+b'`` opens and truncates the file to 0 bytes, while
|
|
``'r+b'`` opens the file without truncation.
|
|
|
|
Python distinguishes between files opened in binary and text modes, even when
|
|
the underlying operating system doesn't. Files opened in binary mode
|
|
(including ``'b'`` in the *mode* argument) return contents as ``bytes``
|
|
objects without any decoding. In text mode (the default, or when ``'t'`` is
|
|
included in the *mode* argument), the contents of the file are returned as
|
|
strings, the bytes having been first decoded using a platform-dependent
|
|
encoding or using the specified *encoding* if given.
|
|
|
|
*buffering* is an optional integer used to set the buffering policy. By
|
|
default full buffering is on. Pass 0 to switch buffering off (only allowed
|
|
in binary mode), 1 to set line buffering, and an integer > 1 for full
|
|
buffering.
|
|
|
|
*encoding* is the name of the encoding used to decode or encode the file.
|
|
This should only be used in text mode. The default encoding is platform
|
|
dependent, but any encoding supported by Python can be used. See the
|
|
:mod:`codecs` module for the list of supported encodings.
|
|
|
|
*errors* is an optional string that specifies how encoding and decoding
|
|
errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError`
|
|
exception if there is an encoding error (the default of ``None`` has the same
|
|
effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring encoding
|
|
errors can lead to data loss.) ``'replace'`` causes a replacement marker
|
|
(such as ``'?'``) to be inserted where there is malformed data. When
|
|
writing, ``'xmlcharrefreplace'`` (replace with the appropriate XML character
|
|
reference) or ``'backslashreplace'`` (replace with backslashed escape
|
|
sequences) can be used. Any other error handling name that has been
|
|
registered with :func:`codecs.register_error` is also valid.
|
|
|
|
*newline* controls how universal newlines works (it only applies to text
|
|
mode). It can be ``None``, ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It
|
|
works as follows:
|
|
|
|
* On input, if *newline* is ``None``, universal newlines mode is enabled.
|
|
Lines in the input can end in ``'\n'``, ``'\r'``, or ``'\r\n'``, and these
|
|
are translated into ``'\n'`` before being returned to the caller. If it is
|
|
``''``, universal newline mode is enabled, but line endings are returned to
|
|
the caller untranslated. If it has any of the other legal values, input
|
|
lines are only terminated by the given string, and the line ending is
|
|
returned to the caller untranslated.
|
|
|
|
* On output, if *newline* is ``None``, any ``'\n'`` characters written are
|
|
translated to the system default line separator, :data:`os.linesep`. If
|
|
*newline* is ``''``, no translation takes place. If *newline* is any of
|
|
the other legal values, any ``'\n'`` characters written are translated to
|
|
the given string.
|
|
|
|
If *closefd* is ``False`` and a file descriptor rather than a
|
|
filename was given, the underlying file descriptor will be kept open
|
|
when the file is closed. If a filename is given *closefd* has no
|
|
effect but must be ``True`` (the default).
|
|
|
|
The type of file object returned by the :func:`open` function depends
|
|
on the mode. When :func:`open` is used to open a file in a text mode
|
|
(``'w'``, ``'r'``, ``'wt'``, ``'rt'``, etc.), it returns a
|
|
:class:`TextIOWrapper`. When used to open a file in a binary mode,
|
|
the returned class varies: in read binary mode, it returns a
|
|
:class:`BufferedReader`; in write binary and append binary modes, it
|
|
returns a :class:`BufferedWriter`, and in read/write mode, it returns
|
|
a :class:`BufferedRandom`.
|
|
|
|
It is also possible to use a string or bytearray as a file for both reading
|
|
and writing. For strings :class:`StringIO` can be used like a file opened in
|
|
a text mode, and for bytearrays a :class:`BytesIO` can be used like a
|
|
file opened in a binary mode.
|
|
|
|
|
|
.. exception:: BlockingIOError
|
|
|
|
Error raised when blocking would occur on a non-blocking stream. It inherits
|
|
:exc:`IOError`.
|
|
|
|
In addition to those of :exc:`IOError`, :exc:`BlockingIOError` has one
|
|
attribute:
|
|
|
|
.. attribute:: characters_written
|
|
|
|
An integer containing the number of characters written to the stream
|
|
before it blocked.
|
|
|
|
|
|
.. exception:: UnsupportedOperation
|
|
|
|
An exception inheriting :exc:`IOError` and :exc:`ValueError` that is raised
|
|
when an unsupported operation is called on a stream.
|
|
|
|
|
|
I/O Base Classes
|
|
----------------
|
|
|
|
.. class:: IOBase
|
|
|
|
The abstract base class for all I/O classes, acting on streams of bytes.
|
|
There is no public constructor.
|
|
|
|
This class provides empty abstract implementations for many methods
|
|
that derived classes can override selectively; the default
|
|
implementations represent a file that cannot be read, written or
|
|
seeked.
|
|
|
|
Even though :class:`IOBase` does not declare :meth:`read`, :meth:`readinto`,
|
|
or :meth:`write` because their signatures will vary, implementations and
|
|
clients should consider those methods part of the interface. Also,
|
|
implementations may raise a :exc:`IOError` when operations they do not
|
|
support are called.
|
|
|
|
The basic type used for binary data read from or written to a file is
|
|
:class:`bytes`. :class:`bytearray`\s are accepted too, and in some cases
|
|
(such as :class:`readinto`) required. Text I/O classes work with
|
|
:class:`str` data.
|
|
|
|
Note that calling any method (even inquiries) on a closed stream is
|
|
undefined. Implementations may raise :exc:`IOError` in this case.
|
|
|
|
IOBase (and its subclasses) support the iterator protocol, meaning that an
|
|
:class:`IOBase` object can be iterated over yielding the lines in a stream.
|
|
|
|
IOBase is also a context manager and therefore supports the
|
|
:keyword:`with` statement. In this example, *file* is closed after the
|
|
:keyword:`with` statement's suite is finished---even if an exception occurs::
|
|
|
|
with open('spam.txt', 'w') as file:
|
|
file.write('Spam and eggs!')
|
|
|
|
:class:`IOBase` provides these data attributes and methods:
|
|
|
|
.. method:: close()
|
|
|
|
Flush and close this stream. This method has no effect if the file is
|
|
already closed. Once the file is closed, any operation on the file
|
|
(e.g. reading or writing) will raise an :exc:`IOError`. The internal
|
|
file descriptor isn't closed if *closefd* was False.
|
|
|
|
.. attribute:: closed
|
|
|
|
True if the stream is closed.
|
|
|
|
.. method:: fileno()
|
|
|
|
Return the underlying file descriptor (an integer) of the stream if it
|
|
exists. An :exc:`IOError` is raised if the IO object does not use a file
|
|
descriptor.
|
|
|
|
.. method:: flush()
|
|
|
|
Flush the write buffers of the stream if applicable. This does nothing
|
|
for read-only and non-blocking streams.
|
|
|
|
.. method:: isatty()
|
|
|
|
Return ``True`` if the stream is interactive (i.e., connected to
|
|
a terminal/tty device).
|
|
|
|
.. method:: readable()
|
|
|
|
Return ``True`` if the stream can be read from. If False, :meth:`read`
|
|
will raise :exc:`IOError`.
|
|
|
|
.. method:: readline([limit])
|
|
|
|
Read and return one line from the stream. If *limit* is specified, at
|
|
most *limit* bytes will be read.
|
|
|
|
The line terminator is always ``b'\n'`` for binary files; for text files,
|
|
the *newlines* argument to :func:`open` can be used to select the line
|
|
terminator(s) recognized.
|
|
|
|
.. method:: readlines([hint])
|
|
|
|
Read and return a list of lines from the stream. *hint* can be specified
|
|
to control the number of lines read: no more lines will be read if the
|
|
total size (in bytes/characters) of all lines so far exceeds *hint*.
|
|
|
|
.. method:: seek(offset[, whence])
|
|
|
|
Change the stream position to the given byte *offset*. *offset* is
|
|
interpreted relative to the position indicated by *whence*. Values for
|
|
*whence* are:
|
|
|
|
* ``0`` -- start of the stream (the default); *offset* should be zero or positive
|
|
* ``1`` -- current stream position; *offset* may be negative
|
|
* ``2`` -- end of the stream; *offset* is usually negative
|
|
|
|
Return the new absolute position.
|
|
|
|
.. method:: seekable()
|
|
|
|
Return ``True`` if the stream supports random access. If ``False``,
|
|
:meth:`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`IOError`.
|
|
|
|
.. method:: tell()
|
|
|
|
Return the current stream position.
|
|
|
|
.. method:: truncate([size])
|
|
|
|
Truncate the file to at most *size* bytes. *size* defaults to the current
|
|
file position, as returned by :meth:`tell`.
|
|
|
|
.. method:: writable()
|
|
|
|
Return ``True`` if the stream supports writing. If ``False``,
|
|
:meth:`write` and :meth:`truncate` will raise :exc:`IOError`.
|
|
|
|
.. method:: writelines(lines)
|
|
|
|
Write a list of lines to the stream. Line separators are not added, so it
|
|
is usual for each of the lines provided to have a line separator at the
|
|
end.
|
|
|
|
|
|
.. class:: RawIOBase
|
|
|
|
Base class for raw binary I/O. It inherits :class:`IOBase`. There is no
|
|
public constructor.
|
|
|
|
In addition to the attributes and methods from :class:`IOBase`,
|
|
RawIOBase provides the following methods:
|
|
|
|
.. method:: read([n])
|
|
|
|
Read and return all the bytes from the stream until EOF, or if *n* is
|
|
specified, up to *n* bytes. Only one system call is ever made. An empty
|
|
bytes object is returned on EOF; ``None`` is returned if the object is set
|
|
not to block and has no data to read.
|
|
|
|
.. method:: readall()
|
|
|
|
Read and return all the bytes from the stream until EOF, using multiple
|
|
calls to the stream if necessary.
|
|
|
|
.. method:: readinto(b)
|
|
|
|
Read up to len(b) bytes into bytearray *b* and return the number of bytes
|
|
read.
|
|
|
|
.. method:: write(b)
|
|
|
|
Write the given bytes or bytearray object, *b*, to the underlying raw
|
|
stream and return the number of bytes written (This is never less than
|
|
``len(b)``, since if the write fails, an :exc:`IOError` will be raised).
|
|
|
|
|
|
.. class:: BufferedIOBase
|
|
|
|
Base class for streams that support buffering. It inherits :class:`IOBase`.
|
|
There is no public constructor.
|
|
|
|
The main difference with :class:`RawIOBase` is that the :meth:`read` method
|
|
supports omitting the *size* argument, and does not have a default
|
|
implementation that defers to :meth:`readinto`.
|
|
|
|
In addition, :meth:`read`, :meth:`readinto`, and :meth:`write` may raise
|
|
:exc:`BlockingIOError` if the underlying raw stream is in non-blocking mode
|
|
and not ready; unlike their raw counterparts, they will never return
|
|
``None``.
|
|
|
|
A typical implementation should not inherit from a :class:`RawIOBase`
|
|
implementation, but wrap one like :class:`BufferedWriter` and
|
|
:class:`BufferedReader`.
|
|
|
|
:class:`BufferedIOBase` provides or overrides these methods in addition to
|
|
those from :class:`IOBase`:
|
|
|
|
.. method:: read([n])
|
|
|
|
Read and return up to *n* bytes. If the argument is omitted, ``None``, or
|
|
negative, data is read and returned until EOF is reached. An empty bytes
|
|
object is returned if the stream is already at EOF.
|
|
|
|
If the argument is positive, and the underlying raw stream is not
|
|
interactive, multiple raw reads may be issued to satisfy the byte count
|
|
(unless EOF is reached first). But for interactive raw streams, at most
|
|
one raw read will be issued, and a short result does not imply that EOF is
|
|
imminent.
|
|
|
|
A :exc:`BlockingIOError` is raised if the underlying raw stream has no
|
|
data at the moment.
|
|
|
|
.. method:: read1([n])
|
|
|
|
Read and return up to *n* bytes, with at most one call to the underlying
|
|
raw stream's :meth:`~RawIOBase.read` method.
|
|
|
|
.. method:: readinto(b)
|
|
|
|
Read up to len(b) bytes into bytearray *b* and return the number of bytes
|
|
read.
|
|
|
|
Like :meth:`read`, multiple reads may be issued to the underlying raw
|
|
stream, unless the latter is 'interactive.'
|
|
|
|
A :exc:`BlockingIOError` is raised if the underlying raw stream has no
|
|
data at the moment.
|
|
|
|
.. method:: write(b)
|
|
|
|
Write the given bytes or bytearray object, *b*, to the underlying raw
|
|
stream and return the number of bytes written (never less than ``len(b)``,
|
|
since if the write fails an :exc:`IOError` will be raised).
|
|
|
|
A :exc:`BlockingIOError` is raised if the buffer is full, and the
|
|
underlying raw stream cannot accept more data at the moment.
|
|
|
|
|
|
Raw File I/O
|
|
------------
|
|
|
|
.. class:: FileIO(name[, mode])
|
|
|
|
:class:`FileIO` represents a file containing bytes data. It implements
|
|
the :class:`RawIOBase` interface (and therefore the :class:`IOBase`
|
|
interface, too).
|
|
|
|
The *mode* can be ``'r'``, ``'w'`` or ``'a'`` for reading (default), writing,
|
|
or appending. The file will be created if it doesn't exist when opened for
|
|
writing or appending; it will be truncated when opened for writing. Add a
|
|
``'+'`` to the mode to allow simultaneous reading and writing.
|
|
|
|
In addition to the attributes and methods from :class:`IOBase` and
|
|
:class:`RawIOBase`, :class:`FileIO` provides the following data
|
|
attributes and methods:
|
|
|
|
.. attribute:: mode
|
|
|
|
The mode as given in the constructor.
|
|
|
|
.. attribute:: name
|
|
|
|
The file name. This is the file descriptor of the file when no name is
|
|
given in the constructor.
|
|
|
|
.. method:: read([n])
|
|
|
|
Read and return at most *n* bytes. Only one system call is made, so it is
|
|
possible that less data than was requested is returned. Use :func:`len`
|
|
on the returned bytes object to see how many bytes were actually returned.
|
|
(In non-blocking mode, ``None`` is returned when no data is available.)
|
|
|
|
.. method:: readall()
|
|
|
|
Read and return the entire file's contents in a single bytes object. As
|
|
much as immediately available is returned in non-blocking mode. If the
|
|
EOF has been reached, ``b''`` is returned.
|
|
|
|
.. method:: write(b)
|
|
|
|
Write the bytes or bytearray object, *b*, to the file, and return
|
|
the number actually written. Only one system call is made, so it
|
|
is possible that only some of the data is written.
|
|
|
|
Note that the inherited ``readinto()`` method should not be used on
|
|
:class:`FileIO` objects.
|
|
|
|
|
|
Buffered Streams
|
|
----------------
|
|
|
|
.. class:: BytesIO([initial_bytes])
|
|
|
|
A stream implementation using an in-memory bytes buffer. It inherits
|
|
:class:`BufferedIOBase`.
|
|
|
|
The argument *initial_bytes* is an optional initial bytearray.
|
|
|
|
:class:`BytesIO` provides or overrides these methods in addition to those
|
|
from :class:`BufferedIOBase` and :class:`IOBase`:
|
|
|
|
.. method:: getvalue()
|
|
|
|
Return ``bytes`` containing the entire contents of the buffer.
|
|
|
|
.. method:: read1()
|
|
|
|
In :class:`BytesIO`, this is the same as :meth:`read`.
|
|
|
|
.. method:: truncate([size])
|
|
|
|
Truncate the buffer to at most *size* bytes. *size* defaults to the
|
|
current stream position, as returned by :meth:`tell`.
|
|
|
|
|
|
.. class:: BufferedReader(raw[, buffer_size])
|
|
|
|
A buffer for a readable, sequential :class:`RawIOBase` object. It inherits
|
|
:class:`BufferedIOBase`.
|
|
|
|
The constructor creates a :class:`BufferedReader` for the given readable
|
|
*raw* stream and *buffer_size*. If *buffer_size* is omitted,
|
|
:data:`DEFAULT_BUFFER_SIZE` is used.
|
|
|
|
:class:`BufferedReader` provides or overrides these methods in addition to
|
|
those from :class:`BufferedIOBase` and :class:`IOBase`:
|
|
|
|
.. method:: peek([n])
|
|
|
|
Return 1 (or *n* if specified) bytes from a buffer without advancing the
|
|
position. Only a single read on the raw stream is done to satisfy the
|
|
call. The number of bytes returned may be less than requested since at
|
|
most all the buffer's bytes from the current position to the end are
|
|
returned.
|
|
|
|
.. method:: read([n])
|
|
|
|
Read and return *n* bytes, or if *n* is not given or negative, until EOF
|
|
or if the read call would block in non-blocking mode.
|
|
|
|
.. method:: read1(n)
|
|
|
|
Read and return up to *n* bytes with only one call on the raw stream. If
|
|
at least one byte is buffered, only buffered bytes are returned.
|
|
Otherwise, one raw stream read call is made.
|
|
|
|
|
|
.. class:: BufferedWriter(raw[, buffer_size[, max_buffer_size]])
|
|
|
|
A buffer for a writeable sequential RawIO object. It inherits
|
|
:class:`BufferedIOBase`.
|
|
|
|
The constructor creates a :class:`BufferedWriter` for the given writeable
|
|
*raw* stream. If the *buffer_size* is not given, it defaults to
|
|
:data:`DEFAULT_BUFFER_SIZE`. If *max_buffer_size* is omitted, it defaults to
|
|
twice the buffer size.
|
|
|
|
:class:`BufferedWriter` provides or overrides these methods in addition to
|
|
those from :class:`BufferedIOBase` and :class:`IOBase`:
|
|
|
|
.. method:: flush()
|
|
|
|
Force bytes held in the buffer into the raw stream. A
|
|
:exc:`BlockingIOError` should be raised if the raw stream blocks.
|
|
|
|
.. method:: write(b)
|
|
|
|
Write the bytes or bytearray object, *b*, onto the raw stream and return
|
|
the number of bytes written. A :exc:`BlockingIOError` is raised when the
|
|
raw stream blocks.
|
|
|
|
|
|
.. class:: BufferedRWPair(reader, writer[, buffer_size[, max_buffer_size]])
|
|
|
|
A combined buffered writer and reader object for a raw stream that can be
|
|
written to and read from. It has and supports both :meth:`read`, :meth:`write`,
|
|
and their variants. This is useful for sockets and two-way pipes.
|
|
It inherits :class:`BufferedIOBase`.
|
|
|
|
*reader* and *writer* are :class:`RawIOBase` objects that are readable and
|
|
writeable respectively. If the *buffer_size* is omitted it defaults to
|
|
:data:`DEFAULT_BUFFER_SIZE`. The *max_buffer_size* (for the buffered writer)
|
|
defaults to twice the buffer size.
|
|
|
|
:class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods.
|
|
|
|
|
|
.. class:: BufferedRandom(raw[, buffer_size[, max_buffer_size]])
|
|
|
|
A buffered interface to random access streams. It inherits
|
|
:class:`BufferedReader` and :class:`BufferedWriter`.
|
|
|
|
The constructor creates a reader and writer for a seekable raw stream, given
|
|
in the first argument. If the *buffer_size* is omitted it defaults to
|
|
:data:`DEFAULT_BUFFER_SIZE`. The *max_buffer_size* (for the buffered writer)
|
|
defaults to twice the buffer size.
|
|
|
|
:class:`BufferedRandom` is capable of anything :class:`BufferedReader` or
|
|
:class:`BufferedWriter` can do.
|
|
|
|
|
|
Text I/O
|
|
--------
|
|
|
|
.. class:: TextIOBase
|
|
|
|
Base class for text streams. This class provides a character and line based
|
|
interface to stream I/O. There is no :meth:`readinto` method because
|
|
Python's character strings are immutable. It inherits :class:`IOBase`.
|
|
There is no public constructor.
|
|
|
|
:class:`TextIOBase` provides or overrides these data attributes and
|
|
methods in addition to those from :class:`IOBase`:
|
|
|
|
.. attribute:: encoding
|
|
|
|
The name of the encoding used to decode the stream's bytes into
|
|
strings, and to encode strings into bytes.
|
|
|
|
.. attribute:: newlines
|
|
|
|
A string, a tuple of strings, or ``None``, indicating the newlines
|
|
translated so far.
|
|
|
|
.. method:: read(n)
|
|
|
|
Read and return at most *n* characters from the stream as a single
|
|
:class:`str`. If *n* is negative or ``None``, reads to EOF.
|
|
|
|
.. method:: readline()
|
|
|
|
Read until newline or EOF and return a single ``str``. If the stream is
|
|
already at EOF, an empty string is returned.
|
|
|
|
.. method:: write(s)
|
|
|
|
Write the string *s* to the stream and return the number of characters
|
|
written.
|
|
|
|
|
|
.. class:: TextIOWrapper(buffer[, encoding[, errors[, newline[, line_buffering]]]])
|
|
|
|
A buffered text stream over a :class:`BufferedIOBase` raw stream, *buffer*.
|
|
It inherits :class:`TextIOBase`.
|
|
|
|
*encoding* gives the name of the encoding that the stream will be decoded or
|
|
encoded with. It defaults to :func:`locale.getpreferredencoding`.
|
|
|
|
*errors* is an optional string that specifies how encoding and decoding
|
|
errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError`
|
|
exception if there is an encoding error (the default of ``None`` has the same
|
|
effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring encoding
|
|
errors can lead to data loss.) ``'replace'`` causes a replacement marker
|
|
(such as ``'?'``) to be inserted where there is malformed data. When
|
|
writing, ``'xmlcharrefreplace'`` (replace with the appropriate XML character
|
|
reference) or ``'backslashreplace'`` (replace with backslashed escape
|
|
sequences) can be used. Any other error handling name that has been
|
|
registered with :func:`codecs.register_error` is also valid.
|
|
|
|
*newline* can be ``None``, ``''``, ``'\n'``, ``'\r'``, or ``'\r\n'``. It
|
|
controls the handling of line endings. If it is ``None``, universal newlines
|
|
is enabled. With this enabled, on input, the lines endings ``'\n'``,
|
|
``'\r'``, or ``'\r\n'`` are translated to ``'\n'`` before being returned to
|
|
the caller. Conversely, on output, ``'\n'`` is translated to the system
|
|
default line separator, :data:`os.linesep`. If *newline* is any other of its
|
|
legal values, that newline becomes the newline when the file is read and it
|
|
is returned untranslated. On output, ``'\n'`` is converted to the *newline*.
|
|
|
|
If *line_buffering* is ``True``, :meth:`flush` is implied when a call to
|
|
write contains a newline character.
|
|
|
|
:class:`TextIOWrapper` provides these data attributes in addition to those of
|
|
:class:`TextIOBase` and its parents:
|
|
|
|
.. attribute:: errors
|
|
|
|
The encoding and decoding error setting.
|
|
|
|
.. attribute:: line_buffering
|
|
|
|
Whether line buffering is enabled.
|
|
|
|
|
|
.. class:: StringIO([initial_value[, encoding[, errors[, newline]]]])
|
|
|
|
An in-memory stream for text. It inherits :class:`TextIOWrapper`.
|
|
|
|
Create a new StringIO stream with an initial value, encoding, error handling,
|
|
and newline setting. See :class:`TextIOWrapper`\'s constructor for more
|
|
information.
|
|
|
|
:class:`StringIO` provides this method in addition to those from
|
|
:class:`TextIOWrapper` and its parents:
|
|
|
|
.. method:: getvalue()
|
|
|
|
Return a ``str`` containing the entire contents of the buffer at any
|
|
time before the :class:`StringIO` object's :meth:`close` method is
|
|
called.
|
|
|
|
Example usage::
|
|
|
|
import io
|
|
|
|
output = io.StringIO()
|
|
output.write('First line.\n')
|
|
print('Second line.', file=output)
|
|
|
|
# Retrieve file contents -- this will be
|
|
# 'First line.\nSecond line.\n'
|
|
contents = output.getvalue()
|
|
|
|
# Close object and discard memory buffer --
|
|
# .getvalue() will now raise an exception.
|
|
output.close()
|
|
|
|
.. class:: IncrementalNewlineDecoder
|
|
|
|
A helper codec that decodes newlines for universal newlines mode. It
|
|
inherits :class:`codecs.IncrementalDecoder`.
|
|
|