15.2.io — Core tools for working with streams¶
New in version 2.6.
Theio module provides the Python interfaces to stream handling.Under Python 2.x, this is proposed as an alternative to the built-infile object, but in Python 3.x it is the default interface toaccess files and streams.
Note
Since this module has been designed primarily for Python 3.x, you have tobe aware that all uses of “bytes” in this document refer to thestr type (of whichbytes is an alias), and all usesof “text” refer to theunicode type. Furthermore, those twotypes are not interchangeable in theio APIs.
At the top of the I/O hierarchy is the abstract base classIOBase. Itdefines the basic interface to a stream. Note, however, that there is noseparation between reading and writing to streams; implementations are allowedto raise anIOError if they do not support a given operation.
ExtendingIOBase isRawIOBase which deals simply with thereading and writing of raw bytes to a stream.FileIO subclassesRawIOBase to provide an interface to files in the machine’sfile system.
BufferedIOBase deals with buffering on a raw byte stream(RawIOBase). Its subclasses,BufferedWriter,BufferedReader, andBufferedRWPair buffer streams that arereadable, writable, and both readable and writable.BufferedRandom provides a buffered interface to random accessstreams.BytesIO is a simple stream of in-memory bytes.
AnotherIOBase subclass,TextIOBase, deals withstreams whose bytes represent text, and handles encoding and decodingfrom and tounicode strings.TextIOWrapper, which extendsit, is a buffered text interface to a buffered raw stream(BufferedIOBase). Finally,StringIO is an in-memorystream for unicode text.
Argument names are not part of the specification, and only the arguments ofopen() are intended to be used as keyword arguments.
15.2.1.Module Interface¶
io.DEFAULT_BUFFER_SIZE¶An int containing the default buffer size used by the module’s buffered I/Oclasses.
open()uses the file’s blksize (as obtained byos.stat()) if possible.
io.open(file,mode='r',buffering=-1,encoding=None,errors=None,newline=None,closefd=True)¶Openfile and return a corresponding stream. If the file cannot be opened,an
IOErroris raised.file is either a string giving the pathname (absolute orrelative to the current working directory) of the file to be opened oran integer file descriptor of the file to be wrapped. (If a file descriptoris given, it is closed when the returned I/O object is closed, unlessclosefd is set to
False.)mode is an optional string that specifies the mode in which the file isopened. It defaults to
'r'which means open for reading in text mode.Other common values are'w'for writing (truncating the file if italready exists), and'a'for appending (which onsome Unix systems,means thatall writes append to the end of the file regardless of thecurrent seek position). In text mode, ifencoding is not specified theencoding used is platform dependent. (For reading and writing raw bytes usebinary mode and leaveencoding 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 newlines mode (for backwards compatibility; shouldnot be used in new code)
The default mode is
'rt'(open for reading text). For binary randomaccess, 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 whenthe underlying operating system doesn’t. Files opened in binary mode(including
'b'in themode argument) return contents asbytesobjects without any decoding. In text mode (the default, or when't'isincluded in themode argument), the contents of the file are returned asunicodestrings, the bytes having been first decoded using aplatform-dependent encoding or using the specifiedencoding if given.buffering is an optional integer used to set the buffering policy.Pass 0 to switch buffering off (only allowed in binary mode), 1 to selectline buffering (only usable in text mode), and an integer > 1 to indicatethe size of a fixed-size chunk buffer. When nobuffering argument isgiven, the default buffering policy works as follows:
Binary files are buffered in fixed-size chunks; the size of the bufferis chosen using a heuristic trying to determine the underlying device’s“block size” and falling back on
DEFAULT_BUFFER_SIZE.On many systems, the buffer will typically be 4096 or 8192 bytes long.“Interactive” text files (files for which
isatty()returns True)use line buffering. Other text files use the policy described abovefor binary files.
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 platformdependent (whatever
locale.getpreferredencoding()returns), but anyencoding supported by Python can be used. See thecodecsmodule forthe list of supported encodings.errors is an optional string that specifies how encoding and decodingerrors are to be handled—this cannot be used in binary mode. Pass
'strict'to raise aValueErrorexception if there is an encodingerror (the default ofNonehas the same effect), or pass'ignore'toignore errors. (Note that ignoring encoding errors can lead to data loss.)'replace'causes a replacement marker (such as'?') to be insertedwhere there is malformed data. When writing,'xmlcharrefreplace'(replace with the appropriate XML character reference) or'backslashreplace'(replace with backslashed escape sequences) can beused. Any other error handling name that has been registered withcodecs.register_error()is also valid.newline controls howuniversal newlines works (it only applies totext mode). It can be
None,'','\n','\r', and'\r\n'.It works as follows:On input, ifnewline is
None, universal newlines mode is enabled.Lines in the input can end in'\n','\r', or'\r\n', and theseare translated into'\n'before being returned to the caller. If it is'', universal newlines mode is enabled, but line endings are returned tothe caller untranslated. If it has any of the other legal values, inputlines are only terminated by the given string, and the line ending isreturned to the caller untranslated.On output, ifnewline is
None, any'\n'characters written aretranslated to the system default line separator,os.linesep. Ifnewline is'', no translation takes place. Ifnewline is any ofthe other legal values, any'\n'characters written are translated tothe given string.
Ifclosefd is
Falseand a file descriptor rather than a filename wasgiven, the underlying file descriptor will be kept open when the file isclosed. If a filename is givenclosefd has no effect and must beTrue(the default).The type of file object returned by the
open()function depends on themode. Whenopen()is used to open a file in a text mode ('w','r','wt','rt', etc.), it returns a subclass ofTextIOBase(specificallyTextIOWrapper). When used to opena file in a binary mode with buffering, the returned class is a subclass ofBufferedIOBase. The exact class varies: in read binary mode, itreturns aBufferedReader; in write binary and append binary modes,it returns aBufferedWriter, and in read/write mode, it returns aBufferedRandom. When buffering is disabled, the raw stream, asubclass ofRawIOBase,FileIO, is returned.It is also possible to use an
unicodeorbytesstringas a file for both reading and writing. ForunicodestringsStringIOcan be used like a file opened in text mode,and forbytesaBytesIOcan be used like afile opened in a binary mode.
- exception
io.BlockingIOError¶ Error raised when blocking would occur on a non-blocking stream. It inherits
IOError.In addition to those of
IOError,BlockingIOErrorhas oneattribute:characters_written¶An integer containing the number of characters written to the streambefore it blocked.
- exception
io.UnsupportedOperation¶ An exception inheriting
IOErrorandValueErrorthat is raisedwhen an unsupported operation is called on a stream.
15.2.2.I/O Base Classes¶
- class
io.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 methodsthat derived classes can override selectively; the defaultimplementations represent a file that cannot be read, written orseeked.
Even though
IOBasedoes not declareread(),readinto(),orwrite()because their signatures will vary, implementations andclients should consider those methods part of the interface. Also,implementations may raise anIOErrorwhen operations they do notsupport are called.The basic type used for binary data read from or written to a file is
bytes(also known asstr). Method arguments mayalso bebytearrayormemoryviewof arrays of bytes.In some cases, such asreadinto(), a writable objectsuch asbytearrayis required.Text I/O classes work withunicodedata.Changed in version 2.7:Implementations should support
memoryviewarguments.Note that calling any method (even inquiries) on a closed stream isundefined. Implementations may raise
IOErrorin this case.IOBase (and its subclasses) support the iterator protocol, meaning that an
IOBaseobject can be iterated over yielding the lines in a stream.Lines are defined slightly differently depending on whether the stream isa binary stream (yieldingbytes), or a text stream (yieldingunicodestrings). Seereadline()below.IOBase is also a context manager and therefore supports the
withstatement. In this example,file is closed after thewithstatement’s suite is finished—even if an exception occurs:withio.open('spam.txt','w')asfile:file.write(u'Spam and eggs!')
IOBaseprovides these data attributes and methods:close()¶Flush and close this stream. This method has no effect if the file isalready closed. Once the file is closed, any operation on the file(e.g. reading or writing) will raise a
ValueError.As a convenience, it is allowed to call this method more than once;only the first call, however, will have an effect.
closed¶True if the stream is closed.
fileno()¶Return the underlying file descriptor (an integer) of the stream if itexists. An
IOErroris raised if the IO object does not use a filedescriptor.
flush()¶Flush the write buffers of the stream if applicable. This does nothingfor read-only and non-blocking streams.
isatty()¶Return
Trueif the stream is interactive (i.e., connected toa terminal/tty device).
readline(limit=-1)¶Read and return one line from the stream. Iflimit is specified, atmostlimit bytes will be read.
The line terminator is always
b'\n'for binary files; for text files,thenewline argument toopen()can be used to select the lineterminator(s) recognized.
readlines(hint=-1)¶Read and return a list of lines from the stream.hint can be specifiedto control the number of lines read: no more lines will be read if thetotal size (in bytes/characters) of all lines so far exceedshint.
Note that it’s already possible to iterate on file objects using
forlineinfile:...without callingfile.readlines().
seek(offset,whence=SEEK_SET)¶Change the stream position to the given byteoffset.offset isinterpreted relative to the position indicated bywhence. The defaultvalue forwhence is
SEEK_SET. Values forwhence are:SEEK_SETor0– start of the stream (the default);offset should be zero or positiveSEEK_CURor1– current stream position;offset maybe negativeSEEK_ENDor2– end of the stream;offset is usuallynegative
Return the new absolute position.
New in version 2.7:The
SEEK_*constants
seekable()¶Return
Trueif the stream supports random access. IfFalse,seek(),tell()andtruncate()will raiseIOError.
tell()¶Return the current stream position.
truncate(size=None)¶Resize the stream to the givensize in bytes (or the current positionifsize is not specified). The current stream position isn’t changed.This resizing can extend or reduce the current file size. In case ofextension, the contents of the new file area depend on the platform(on most systems, additional bytes are zero-filled, on Windows they’reundetermined). The new file size is returned.
writable()¶Return
Trueif the stream supports writing. IfFalse,write()andtruncate()will raiseIOError.
writelines(lines)¶Write a list of lines to the stream. Line separators are not added, so itis usual for each of the lines provided to have a line separator at theend.
- class
io.RawIOBase¶ Base class for raw binary I/O. It inherits
IOBase. There is nopublic constructor.Raw binary I/O typically provides low-level access to an underlying OSdevice or API, and does not try to encapsulate it in high-level primitives(this is left to Buffered I/O and Text I/O, described later in this page).
In addition to the attributes and methods from
IOBase,RawIOBase provides the following methods:read(n=-1)¶Read up ton bytes from the object and return them. As a convenience,ifn is unspecified or -1,
readall()is called. Otherwise,only one system call is ever made. Fewer thann bytes may bereturned if the operating system call returns fewer thann bytes.If 0 bytes are returned, andn was not 0, this indicates end of file.If the object is in non-blocking mode and no bytes are available,
Noneis returned.
readall()¶Read and return all the bytes from the stream until EOF, using multiplecalls to the stream if necessary.
readinto(b)¶Read up to len(b) bytes intob, and return the numberof bytes read. The objectb should be a pre-allocated, writablearray of bytes, either
bytearrayormemoryview.If the object is in non-blocking mode and nobytes are available,Noneis returned.
write(b)¶Writeb to the underlying raw stream, and return thenumber of bytes written. The objectb should be an arrayof bytes, either
bytes,bytearray, ormemoryview. The return value can be less thanlen(b), depending on specifics of the underlying raw stream, andespecially if it is in non-blocking mode.Noneis returned if theraw stream is set not to block and no single byte could be readilywritten to it. The caller may release or mutateb afterthis method returns, so the implementation should only accessbduring the method call.
- class
io.BufferedIOBase¶ Base class for binary streams that support some kind of buffering.It inherits
IOBase. There is no public constructor.The main difference with
RawIOBaseis that methodsread(),readinto()andwrite()will try (respectively) to read as muchinput as requested or to consume all given output, at the expense ofmaking perhaps more than one system call.In addition, those methods can raise
BlockingIOErrorif theunderlying raw stream is in non-blocking mode and cannot take or giveenough data; unlike theirRawIOBasecounterparts, they willnever returnNone.Besides, the
read()method does not have a defaultimplementation that defers toreadinto().A typical
BufferedIOBaseimplementation should not inherit from aRawIOBaseimplementation, but wrap one, likeBufferedWriterandBufferedReaderdo.BufferedIOBaseprovides or overrides these methods and attribute inaddition to those fromIOBase:raw¶The underlying raw stream (a
RawIOBaseinstance) thatBufferedIOBasedeals with. This is not part of theBufferedIOBaseAPI and may not exist on some implementations.
detach()¶Separate the underlying raw stream from the buffer and return it.
After the raw stream has been detached, the buffer is in an unusablestate.
Some buffers, like
BytesIO, do not have the concept of a singleraw stream to return from this method. They raiseUnsupportedOperation.New in version 2.7.
read(n=-1)¶Read and return up ton bytes. If the argument is omitted,
None, ornegative, data is read and returned until EOF is reached. An empty bytesobject is returned if the stream is already at EOF.If the argument is positive, and the underlying raw stream is notinteractive, multiple raw reads may be issued to satisfy the byte count(unless EOF is reached first). But for interactive raw streams, at mostone raw read will be issued, and a short result does not imply that EOF isimminent.
A
BlockingIOErroris raised if the underlying raw stream is innon blocking-mode, and has no data available at the moment.
read1(n=-1)¶Read and return up ton bytes, with at most one call to the underlyingraw stream’s
read()method. This can be useful if youare implementing your own buffering on top of aBufferedIOBaseobject.
readinto(b)¶Read up to len(b) bytes intob, and return the number of bytes read.The objectb should be a pre-allocated, writable array of bytes,either
bytearrayormemoryview.Like
read(), multiple reads may be issued to the underlying rawstream, unless the latter is ‘interactive’.A
BlockingIOErroris raised if the underlying raw stream is innon blocking-mode, and has no data available at the moment.
write(b)¶Writeb, and return the number of bytes written(always equal to
len(b), since if the write failsanIOErrorwill be raised). The objectb should bean array of bytes, eitherbytes,bytearray,ormemoryview. Depending on the actualimplementation, these bytes may be readily written to the underlyingstream, or held in a buffer for performance and latency reasons.When in non-blocking mode, a
BlockingIOErroris raised if thedata needed to be written to the raw stream but it couldn’t acceptall the data without blocking.The caller may release or mutateb after this method returns,so the implementation should only accessb during the method call.
15.2.3.Raw File I/O¶
- class
io.FileIO(name,mode='r',closefd=True)¶ FileIOrepresents an OS-level file containing bytes data.It implements theRawIOBaseinterface (and therefore theIOBaseinterface, too).Thename can be one of two things:
a string representing the path to the file which will be opened;
an integer representing the number of an existing OS-level file descriptorto which the resulting
FileIOobject will give access.
Themode can be
'r','w'or'a'for reading (default), writing,or appending. The file will be created if it doesn’t exist when opened forwriting or appending; it will be truncated when opened for writing. Add a'+'to the mode to allow simultaneous reading and writing.The
read()(when called with a positive argument),readinto()andwrite()methods on this class will only make one system call.In addition to the attributes and methods from
IOBaseandRawIOBase,FileIOprovides the following dataattributes and methods:mode¶The mode as given in the constructor.
name¶The file name. This is the file descriptor of the file when no name isgiven in the constructor.
15.2.4.Buffered Streams¶
Buffered I/O streams provide a higher-level interface to an I/O devicethan raw I/O does.
- class
io.BytesIO([initial_bytes])¶ A stream implementation using an in-memory bytes buffer. It inherits
BufferedIOBase.The optional argumentinitial_bytes is a
bytesobject thatcontains initial data.BytesIOprovides or overrides these methods in addition to thosefromBufferedIOBaseandIOBase:getvalue()¶Return
bytescontaining the entire contents of the buffer.
- class
io.BufferedReader(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶ A buffer providing higher-level access to a readable, sequential
RawIOBaseobject. It inheritsBufferedIOBase.When reading data from this object, a larger amount of data may berequested from the underlying raw stream, and kept in an internal buffer.The buffered data can then be returned directly on subsequent reads.The constructor creates a
BufferedReaderfor the given readableraw stream andbuffer_size. Ifbuffer_size is omitted,DEFAULT_BUFFER_SIZEis used.BufferedReaderprovides or overrides these methods in addition tothose fromBufferedIOBaseandIOBase:peek([n])¶Return bytes from the stream without advancing the position. At most onesingle read on the raw stream is done to satisfy the call. The number ofbytes returned may be less or more than requested.
read([n])¶Read and returnn bytes, or ifn is not given or negative, until EOFor if the read call would block in non-blocking mode.
read1(n)¶Read and return up ton bytes with only one call on the raw stream. Ifat least one byte is buffered, only buffered bytes are returned.Otherwise, one raw stream read call is made.
- class
io.BufferedWriter(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶ A buffer providing higher-level access to a writeable, sequential
RawIOBaseobject. It inheritsBufferedIOBase.When writing to this object, data is normally held into an internalbuffer. The buffer will be written out to the underlyingRawIOBaseobject under various conditions, including:when the buffer gets too small for all pending data;
when
flush()is called;when a
seek()is requested (forBufferedRandomobjects);when the
BufferedWriterobject is closed or destroyed.
The constructor creates a
BufferedWriterfor the given writeableraw stream. If thebuffer_size is not given, it defaults toDEFAULT_BUFFER_SIZE.A third argument,max_buffer_size, is supported, but unused and deprecated.
BufferedWriterprovides or overrides these methods in addition tothose fromBufferedIOBaseandIOBase:flush()¶Force bytes held in the buffer into the raw stream. A
BlockingIOErrorshould be raised if the raw stream blocks.
write(b)¶Writeb, and return the number of bytes written.The objectb should be an array of bytes, either
bytes,bytearray, ormemoryview.When in non-blocking mode, aBlockingIOErroris raisedif the buffer needs to be written out but the raw stream blocks.
- class
io.BufferedRandom(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶ A buffered interface to random access streams. It inherits
BufferedReaderandBufferedWriter, and further supportsseek()andtell()functionality.The constructor creates a reader and writer for a seekable raw stream, givenin the first argument. If thebuffer_size is omitted it defaults to
DEFAULT_BUFFER_SIZE.A third argument,max_buffer_size, is supported, but unused and deprecated.
BufferedRandomis capable of anythingBufferedReaderorBufferedWritercan do.
- class
io.BufferedRWPair(reader,writer,buffer_size=DEFAULT_BUFFER_SIZE)¶ A buffered I/O object combining two unidirectional
RawIOBaseobjects – one readable, the other writeable – into a single bidirectionalendpoint. It inheritsBufferedIOBase.reader andwriter are
RawIOBaseobjects that are readable andwriteable respectively. If thebuffer_size is omitted it defaults toDEFAULT_BUFFER_SIZE.A fourth argument,max_buffer_size, is supported, but unused anddeprecated.
BufferedRWPairimplements all ofBufferedIOBase’s methodsexcept fordetach(), which raisesUnsupportedOperation.Warning
BufferedRWPairdoes not attempt to synchronize accesses toits underlying raw streams. You should not pass it the same objectas reader and writer; useBufferedRandominstead.
15.2.5.Text I/O¶
- class
io.TextIOBase¶ Base class for text streams. This class provides a unicode characterand line based interface to stream I/O. There is no
readinto()method because Python’sunicodestrings are immutable.It inheritsIOBase. There is no public constructor.TextIOBaseprovides or overrides these data attributes andmethods in addition to those fromIOBase:encoding¶The name of the encoding used to decode the stream’s bytes intostrings, and to encode strings into bytes.
errors¶The error setting of the decoder or encoder.
newlines¶A string, a tuple of strings, or
None, indicating the newlinestranslated so far. Depending on the implementation and the initialconstructor flags, this may not be available.
buffer¶The underlying binary buffer (a
BufferedIOBaseinstance) thatTextIOBasedeals with. This is not part of theTextIOBaseAPI and may not exist on some implementations.
detach()¶Separate the underlying binary buffer from the
TextIOBaseandreturn it.After the underlying buffer has been detached, the
TextIOBaseisin an unusable state.Some
TextIOBaseimplementations, likeStringIO, may nothave the concept of an underlying buffer and calling this method willraiseUnsupportedOperation.New in version 2.7.
read(n=-1)¶Read and return at mostn characters from the stream as a single
unicode. Ifn is negative orNone, reads until EOF.
readline(limit=-1)¶Read until newline or EOF and return a single
unicode. If thestream is already at EOF, an empty string is returned.Iflimit is specified, at mostlimit characters will be read.
seek(offset,whence=SEEK_SET)¶Change the stream position to the givenoffset. Behaviour depends onthewhence parameter. The default value forwhence is
SEEK_SET.SEEK_SETor0: seek from the start of the stream(the default);offset must either be a number returned byTextIOBase.tell(), or zero. Any otheroffset valueproduces undefined behaviour.SEEK_CURor1: “seek” to the current position;offset must be zero, which is a no-operation (all other valuesare unsupported).SEEK_ENDor2: seek to the end of the stream;offset must be zero (all other values are unsupported).
Return the new absolute position as an opaque number.
New in version 2.7:The
SEEK_*constants.
tell()¶Return the current stream position as an opaque number. The numberdoes not usually represent a number of bytes in the underlyingbinary storage.
- class
io.TextIOWrapper(buffer,encoding=None,errors=None,newline=None,line_buffering=False)¶ A buffered text stream over a
BufferedIOBasebinary stream.It inheritsTextIOBase.encoding gives the name of the encoding that the stream will be decoded orencoded with. It defaults to
locale.getpreferredencoding().errors is an optional string that specifies how encoding and decodingerrors are to be handled. Pass
'strict'to raise aValueErrorexception if there is an encoding error (the default ofNonehas the sameeffect), or pass'ignore'to ignore errors. (Note that ignoring encodingerrors can lead to data loss.)'replace'causes a replacement marker(such as'?') to be inserted where there is malformed data. Whenwriting,'xmlcharrefreplace'(replace with the appropriate XML characterreference) or'backslashreplace'(replace with backslashed escapesequences) can be used. Any other error handling name that has beenregistered withcodecs.register_error()is also valid.newline controls how line endings are handled. It can be
None,'','\n','\r', and'\r\n'. It works as follows:On input, ifnewline is
None,universal newlines mode isenabled. Lines in the input can end in'\n','\r', or'\r\n',and these are translated into'\n'before being returned to thecaller. If it is'', universal newlines mode is enabled, but lineendings are returned to the caller untranslated. If it has any of theother legal values, input lines are only terminated by the given string,and the line ending is returned to the caller untranslated.On output, ifnewline is
None, any'\n'characters written aretranslated to the system default line separator,os.linesep. Ifnewline is'', no translation takes place. Ifnewline is any ofthe other legal values, any'\n'characters written are translated tothe given string.
Ifline_buffering is
True,flush()is implied when a call towrite contains a newline character or a carriage return.TextIOWrapperprovides one attribute in addition to those ofTextIOBaseand its parents:line_buffering¶Whether line buffering is enabled.
- class
io.StringIO(initial_value=u'',newline=u'\n')¶ An in-memory stream for unicode text. It inherits
TextIOWrapper.The initial value of the buffer can be set by providinginitial_value.If newline translation is enabled, newlines will be encoded as if by
write(). The stream is positioned at the start ofthe buffer.Thenewline argument works like that of
TextIOWrapper.The default is to consider only\ncharacters as ends of lines andto do no newline translation. Ifnewline is set toNone,newlines are written as\non all platforms, but universalnewline decoding is still performed when reading.StringIOprovides this method in addition to those fromTextIOWrapperand its parents:getvalue()¶Return a
unicodecontaining the entire contents of the buffer at anytime before theStringIOobject’sclose()method iscalled. Newlines are decoded as if byread(),although the stream position is not changed.
Example usage:
importiooutput=io.StringIO()output.write(u'First line.\n')output.write(u'Second line.\n')# Retrieve file contents -- this will be# u'First line.\nSecond line.\n'contents=output.getvalue()# Close object and discard memory buffer --# .getvalue() will now raise an exception.output.close()
- class
io.IncrementalNewlineDecoder¶ A helper codec that decodes newlines foruniversal newlines mode.It inherits
codecs.IncrementalDecoder.
15.2.6.Advanced topics¶
Here we will discuss several advanced topics pertaining to the concreteI/O implementations described above.
15.2.6.1.Performance¶
15.2.6.1.1.Binary I/O¶
By reading and writing only large chunks of data even when the user asksfor a single byte, buffered I/O is designed to hide any inefficiency incalling and executing the operating system’s unbuffered I/O routines. Thegain will vary very much depending on the OS and the kind of I/O which isperformed (for example, on some contemporary OSes such as Linux, unbuffereddisk I/O can be as fast as buffered I/O). The bottom line, however, isthat buffered I/O will offer you predictable performance regardless of theplatform and the backing device. Therefore, it is most always preferable touse buffered I/O rather than unbuffered I/O.
15.2.6.1.2.Text I/O¶
Text I/O over a binary storage (such as a file) is significantly slower thanbinary I/O over the same storage, because it implies conversions fromunicode to binary data using a character codec. This can become noticeableif you handle huge amounts of text data (for example very large log files).Also,TextIOWrapper.tell() andTextIOWrapper.seek() are bothquite slow due to the reconstruction algorithm used.
StringIO, however, is a native in-memory unicode container and willexhibit similar speed toBytesIO.
15.2.6.2.Multi-threading¶
FileIO objects are thread-safe to the extent that the operatingsystem calls (such asread(2) under Unix) they are wrapping are thread-safetoo.
Binary buffered objects (instances ofBufferedReader,BufferedWriter,BufferedRandom andBufferedRWPair)protect their internal structures using a lock; it is therefore safe to callthem from multiple threads at once.
TextIOWrapper objects are not thread-safe.
15.2.6.3.Reentrancy¶
Binary buffered objects (instances ofBufferedReader,BufferedWriter,BufferedRandom andBufferedRWPair)are not reentrant. While reentrant calls will not happen in normal situations,they can arise if you are doing I/O in asignal handler. If it isattempted to enter a buffered object again while already being accessedfrom the same thread, then aRuntimeError is raised.
The above implicitly extends to text files, since theopen()function will wrap a buffered object inside aTextIOWrapper. Thisincludes standard streams and therefore affects the built-in functionprint() as well.
