2008-04-12 23:01:27 -03:00
|
|
|
: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>
|
Merged revisions 68521,68527,68534-68536,68540,68547,68552,68563,68570,68572,68575,68579-68580,68584 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68521 | hirokazu.yamamoto | 2009-01-11 04:28:13 +0100 (So, 11 Jan 2009) | 1 line
Fixed version number in build_ssl.bat.
........
r68527 | martin.v.loewis | 2009-01-11 10:43:55 +0100 (So, 11 Jan 2009) | 2 lines
Issue #4895: Use _strdup on Windows CE.
........
r68534 | gregory.p.smith | 2009-01-11 18:53:33 +0100 (So, 11 Jan 2009) | 2 lines
correct email address
........
r68535 | gregory.p.smith | 2009-01-11 18:57:54 +0100 (So, 11 Jan 2009) | 9 lines
Update the documentation for binascii and zlib crc32/adler32 functions
to better describe the signed vs unsigned return value behavior on
different platforms and versions of python. Mention the workaround to
make them all return the same thing by using & 0xffffffff.
Fixes issue4903.
Also needs to be merged into release26-maint, release30-maint, & py3k.
........
r68536 | benjamin.peterson | 2009-01-11 20:48:15 +0100 (So, 11 Jan 2009) | 1 line
add email addresses
........
r68540 | martin.v.loewis | 2009-01-12 08:57:11 +0100 (Mo, 12 Jan 2009) | 2 lines
Issue #4915: Port sysmodule to Windows CE.
........
r68547 | kristjan.jonsson | 2009-01-12 19:09:27 +0100 (Mo, 12 Jan 2009) | 1 line
Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module.
........
r68552 | vinay.sajip | 2009-01-12 21:36:18 +0100 (Mo, 12 Jan 2009) | 1 line
Minor changes/corrections in markup.
........
r68563 | benjamin.peterson | 2009-01-13 02:49:10 +0100 (Di, 13 Jan 2009) | 1 line
small logic correction
........
r68570 | raymond.hettinger | 2009-01-13 10:08:32 +0100 (Di, 13 Jan 2009) | 5 lines
Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard().
Needs to be backported to 2.6 and forward ported to 3.0 and 3.1.
........
r68572 | andrew.kuchling | 2009-01-13 14:40:54 +0100 (Di, 13 Jan 2009) | 1 line
Note that first coord. is left alone
........
r68575 | thomas.heller | 2009-01-13 18:32:28 +0100 (Di, 13 Jan 2009) | 1 line
Fix refcount leak in error cases. Bug found by coverity.
........
r68579 | benjamin.peterson | 2009-01-13 22:42:23 +0100 (Di, 13 Jan 2009) | 1 line
make bytearrayobject.o depend on the stringlib #4936
........
r68580 | benjamin.peterson | 2009-01-13 22:43:11 +0100 (Di, 13 Jan 2009) | 1 line
add bytearrayobject.h to PYTHON_HEADERS
........
r68584 | benjamin.peterson | 2009-01-13 23:22:41 +0100 (Di, 13 Jan 2009) | 1 line
de-spacify
........
2009-01-13 20:08:09 -04:00
|
|
|
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
|
2008-04-12 23:01:27 -03:00
|
|
|
.. versionadded:: 2.6
|
|
|
|
|
|
|
|
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
|
|
|
|
seperation 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
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`RawIOBase` to provide an interface to files in the machine's
|
|
|
|
file system.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
: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
|
2008-04-21 08:57:40 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
Argument names are not part of the specification, and only the arguments of
|
2008-04-19 16:34:05 -03:00
|
|
|
:func:`open` are intended to be used as keyword arguments.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
Module Interface
|
|
|
|
----------------
|
|
|
|
|
|
|
|
.. data:: DEFAULT_BUFFER_SIZE
|
|
|
|
|
|
|
|
An int containing the default buffer size used by the module's buffered I/O
|
2008-04-19 16:34:05 -03:00
|
|
|
classes. :func:`open` uses the file's blksize (as obtained by
|
2008-04-12 23:01:27 -03:00
|
|
|
: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
|
2008-04-21 08:57:40 -03:00
|
|
|
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``.)
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
*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)
|
2008-04-21 08:57:40 -03:00
|
|
|
``'U'`` universal newline mode (for backwards compatibility; should
|
|
|
|
not be used in new code)
|
2008-04-12 23:01:27 -03:00
|
|
|
========= ===============================================================
|
|
|
|
|
|
|
|
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
|
2008-04-21 08:57:40 -03:00
|
|
|
(including ``'b'`` in the *mode* argument) return contents as ``bytes``
|
2008-04-12 23:01:27 -03:00
|
|
|
objects without any decoding. In text mode (the default, or when ``'t'`` is
|
2008-04-21 08:57:40 -03:00
|
|
|
included in the *mode* argument), the contents of the file are returned as
|
2008-04-12 23:01:27 -03:00
|
|
|
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
|
2008-04-21 08:57:40 -03:00
|
|
|
dependent, but any encoding supported by Python can be used. See the
|
2008-04-12 23:01:27 -03:00
|
|
|
:mod:`codecs` module for the list of supported encodings.
|
|
|
|
|
2008-04-19 16:34:05 -03:00
|
|
|
*errors* is an optional string that specifies how encoding and decoding
|
2008-04-19 16:47:34 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
*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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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).
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
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
|
2008-04-21 08:57:40 -03:00
|
|
|
a text mode, and for bytearrays a :class:`BytesIO` can be used like a
|
|
|
|
file opened in a binary mode.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. 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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
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
|
2008-04-21 08:57:40 -03:00
|
|
|
(such as :class:`readinto`) required. Text I/O classes work with
|
|
|
|
:class:`str` data.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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::
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
with open('spam.txt', 'w') as file:
|
|
|
|
file.write('Spam and eggs!')
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`IOBase` provides these data attributes and methods:
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: close()
|
|
|
|
|
Merged revisions 67245,67277,67289,67295,67301-67303,67307,67330,67332,67336,67355,67359,67362,67364,67367-67368,67370 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67245 | benjamin.peterson | 2008-11-17 23:05:19 +0100 (Mon, 17 Nov 2008) | 1 line
improve __hash__ docs
........
r67277 | skip.montanaro | 2008-11-19 04:35:41 +0100 (Wed, 19 Nov 2008) | 1 line
patch from issue 1108
........
r67289 | brett.cannon | 2008-11-19 21:29:39 +0100 (Wed, 19 Nov 2008) | 2 lines
Ignore .pyc and .pyo files.
........
r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (Thu, 20 Nov 2008) | 1 line
move useful sys.settrace information to the function's documentation from the debugger
........
r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (Thu, 20 Nov 2008) | 1 line
fix indentation and a sphinx warning
........
r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (Thu, 20 Nov 2008) | 1 line
oops! didn't mean to disable that test
........
r67303 | benjamin.peterson | 2008-11-20 23:06:22 +0100 (Thu, 20 Nov 2008) | 1 line
backport r67300
........
r67307 | amaury.forgeotdarc | 2008-11-21 00:34:31 +0100 (Fri, 21 Nov 2008) | 9 lines
Fixed issue #4233.
Changed semantic of _fileio.FileIO's close() method on file objects with closefd=False.
The file descriptor is still kept open but the file object behaves like a closed file.
The FileIO object also got a new readonly attribute closefd.
Approved by Barry
Backport of r67106 from the py3k branch
........
r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (Sat, 22 Nov 2008) | 2 lines
#4364: fix attribute name on ctypes object.
........
r67332 | georg.brandl | 2008-11-22 09:45:33 +0100 (Sat, 22 Nov 2008) | 2 lines
Fix typo.
........
r67336 | georg.brandl | 2008-11-22 11:08:50 +0100 (Sat, 22 Nov 2008) | 2 lines
Fix error about "-*-" being mandatory in coding cookies.
........
r67355 | georg.brandl | 2008-11-23 20:17:25 +0100 (Sun, 23 Nov 2008) | 2 lines
#4392: fix parameter name.
........
r67359 | georg.brandl | 2008-11-23 22:57:30 +0100 (Sun, 23 Nov 2008) | 2 lines
#4399: fix typo.
........
r67362 | gregory.p.smith | 2008-11-24 01:41:43 +0100 (Mon, 24 Nov 2008) | 2 lines
Document PY_SSIZE_T_CLEAN for PyArg_ParseTuple.
........
r67364 | benjamin.peterson | 2008-11-24 02:16:29 +0100 (Mon, 24 Nov 2008) | 2 lines
replace reference to debugger-hooks
........
r67367 | georg.brandl | 2008-11-24 17:16:07 +0100 (Mon, 24 Nov 2008) | 2 lines
Fix typo.
........
r67368 | georg.brandl | 2008-11-24 20:56:47 +0100 (Mon, 24 Nov 2008) | 2 lines
#4404: make clear what "path" is.
........
r67370 | jeremy.hylton | 2008-11-24 23:00:29 +0100 (Mon, 24 Nov 2008) | 8 lines
Add unittests that verify documented behavior of public methods in Transport
class.
These methods can be overridden. The tests verify that the overridden
methods are called, and that changes to the connection have a visible
effect on the request.
........
2008-12-05 04:51:30 -04:00
|
|
|
Flush and close this stream. This method has no effect if the file is
|
Merged revisions 68133-68134,68141-68142,68145-68146,68148-68149,68159-68162,68166,68171-68174,68179,68195-68196,68210,68214-68215,68217-68222 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68133 | antoine.pitrou | 2009-01-01 16:38:03 +0100 (Thu, 01 Jan 2009) | 1 line
fill in actual issue number in tests
........
r68134 | hirokazu.yamamoto | 2009-01-01 16:45:39 +0100 (Thu, 01 Jan 2009) | 2 lines
Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
file with `str' filename on Windows.
........
r68141 | benjamin.peterson | 2009-01-01 17:43:12 +0100 (Thu, 01 Jan 2009) | 1 line
fix highlighting
........
r68142 | benjamin.peterson | 2009-01-01 18:29:49 +0100 (Thu, 01 Jan 2009) | 2 lines
welcome to 2009, Python!
........
r68145 | amaury.forgeotdarc | 2009-01-02 01:03:54 +0100 (Fri, 02 Jan 2009) | 5 lines
#4801 _collections module fails to build on cygwin.
_PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
and according to documentation it should not be used for extension modules.
........
r68146 | ronald.oussoren | 2009-01-02 11:44:46 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4472: "configure --enable-shared doesn't work on OSX"
........
r68148 | ronald.oussoren | 2009-01-02 11:48:31 +0100 (Fri, 02 Jan 2009) | 2 lines
Forgot to add a NEWS item in my previous checkin
........
r68149 | ronald.oussoren | 2009-01-02 11:50:48 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4780
........
r68159 | ronald.oussoren | 2009-01-02 15:48:17 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue 1627952
........
r68160 | ronald.oussoren | 2009-01-02 15:52:09 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue r1737832
........
r68161 | ronald.oussoren | 2009-01-02 16:00:05 +0100 (Fri, 02 Jan 2009) | 3 lines
Fix for issue 1149804
........
r68162 | ronald.oussoren | 2009-01-02 16:06:00 +0100 (Fri, 02 Jan 2009) | 3 lines
Fix for issue 4472 is incompatible with Cygwin, this patch
should fix that.
........
r68166 | benjamin.peterson | 2009-01-02 19:26:23 +0100 (Fri, 02 Jan 2009) | 1 line
document PyMemberDef
........
r68171 | georg.brandl | 2009-01-02 21:25:14 +0100 (Fri, 02 Jan 2009) | 3 lines
#4811: fix markup glitches (mostly remains of the conversion),
found by Gabriel Genellina.
........
r68172 | martin.v.loewis | 2009-01-02 21:32:55 +0100 (Fri, 02 Jan 2009) | 2 lines
Issue #4075: Use OutputDebugStringW in Py_FatalError.
........
r68173 | martin.v.loewis | 2009-01-02 21:40:14 +0100 (Fri, 02 Jan 2009) | 2 lines
Issue #4051: Prevent conflict of UNICODE macros in cPickle.
........
r68174 | benjamin.peterson | 2009-01-02 21:47:27 +0100 (Fri, 02 Jan 2009) | 1 line
fix compilation on non-Windows platforms
........
r68179 | raymond.hettinger | 2009-01-02 22:26:45 +0100 (Fri, 02 Jan 2009) | 1 line
Issue #4615. Document how to use itertools for de-duping.
........
r68195 | georg.brandl | 2009-01-03 14:45:15 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove useless string literal.
........
r68196 | georg.brandl | 2009-01-03 15:29:53 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix indentation.
........
r68210 | georg.brandl | 2009-01-03 20:10:12 +0100 (Sat, 03 Jan 2009) | 2 lines
Set eol-style correctly for mp_distributing.py.
........
r68214 | georg.brandl | 2009-01-03 20:44:48 +0100 (Sat, 03 Jan 2009) | 2 lines
Make indentation consistent.
........
r68215 | georg.brandl | 2009-01-03 21:15:14 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix role name.
........
r68217 | georg.brandl | 2009-01-03 21:30:15 +0100 (Sat, 03 Jan 2009) | 2 lines
Add rstlint, a little tool to find subtle markup problems and inconsistencies in the Doc sources.
........
r68218 | georg.brandl | 2009-01-03 21:38:59 +0100 (Sat, 03 Jan 2009) | 2 lines
Recognize usage of the default role.
........
r68219 | georg.brandl | 2009-01-03 21:47:01 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix uses of the default role.
........
r68220 | georg.brandl | 2009-01-03 21:55:06 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove trailing whitespace.
........
r68221 | georg.brandl | 2009-01-03 22:04:55 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove tabs from the documentation.
........
r68222 | georg.brandl | 2009-01-03 22:11:58 +0100 (Sat, 03 Jan 2009) | 2 lines
Disable the line length checker by default.
........
2009-01-03 17:55:17 -04:00
|
|
|
already closed. Once the file is closed, any operation on the file
|
Merged revisions 67245,67277,67289,67295,67301-67303,67307,67330,67332,67336,67355,67359,67362,67364,67367-67368,67370 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67245 | benjamin.peterson | 2008-11-17 23:05:19 +0100 (Mon, 17 Nov 2008) | 1 line
improve __hash__ docs
........
r67277 | skip.montanaro | 2008-11-19 04:35:41 +0100 (Wed, 19 Nov 2008) | 1 line
patch from issue 1108
........
r67289 | brett.cannon | 2008-11-19 21:29:39 +0100 (Wed, 19 Nov 2008) | 2 lines
Ignore .pyc and .pyo files.
........
r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (Thu, 20 Nov 2008) | 1 line
move useful sys.settrace information to the function's documentation from the debugger
........
r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (Thu, 20 Nov 2008) | 1 line
fix indentation and a sphinx warning
........
r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (Thu, 20 Nov 2008) | 1 line
oops! didn't mean to disable that test
........
r67303 | benjamin.peterson | 2008-11-20 23:06:22 +0100 (Thu, 20 Nov 2008) | 1 line
backport r67300
........
r67307 | amaury.forgeotdarc | 2008-11-21 00:34:31 +0100 (Fri, 21 Nov 2008) | 9 lines
Fixed issue #4233.
Changed semantic of _fileio.FileIO's close() method on file objects with closefd=False.
The file descriptor is still kept open but the file object behaves like a closed file.
The FileIO object also got a new readonly attribute closefd.
Approved by Barry
Backport of r67106 from the py3k branch
........
r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (Sat, 22 Nov 2008) | 2 lines
#4364: fix attribute name on ctypes object.
........
r67332 | georg.brandl | 2008-11-22 09:45:33 +0100 (Sat, 22 Nov 2008) | 2 lines
Fix typo.
........
r67336 | georg.brandl | 2008-11-22 11:08:50 +0100 (Sat, 22 Nov 2008) | 2 lines
Fix error about "-*-" being mandatory in coding cookies.
........
r67355 | georg.brandl | 2008-11-23 20:17:25 +0100 (Sun, 23 Nov 2008) | 2 lines
#4392: fix parameter name.
........
r67359 | georg.brandl | 2008-11-23 22:57:30 +0100 (Sun, 23 Nov 2008) | 2 lines
#4399: fix typo.
........
r67362 | gregory.p.smith | 2008-11-24 01:41:43 +0100 (Mon, 24 Nov 2008) | 2 lines
Document PY_SSIZE_T_CLEAN for PyArg_ParseTuple.
........
r67364 | benjamin.peterson | 2008-11-24 02:16:29 +0100 (Mon, 24 Nov 2008) | 2 lines
replace reference to debugger-hooks
........
r67367 | georg.brandl | 2008-11-24 17:16:07 +0100 (Mon, 24 Nov 2008) | 2 lines
Fix typo.
........
r67368 | georg.brandl | 2008-11-24 20:56:47 +0100 (Mon, 24 Nov 2008) | 2 lines
#4404: make clear what "path" is.
........
r67370 | jeremy.hylton | 2008-11-24 23:00:29 +0100 (Mon, 24 Nov 2008) | 8 lines
Add unittests that verify documented behavior of public methods in Transport
class.
These methods can be overridden. The tests verify that the overridden
methods are called, and that changes to the connection have a visible
effect on the request.
........
2008-12-05 04:51:30 -04:00
|
|
|
(e.g. reading or writing) will raise an :exc:`IOError`. The internal
|
|
|
|
file descriptor isn't closed if *closefd* was False.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. attribute:: closed
|
|
|
|
|
|
|
|
True if the stream is closed.
|
|
|
|
|
|
|
|
.. method:: fileno()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return the underlying file descriptor (an integer) of the stream if it
|
2008-04-12 23:01:27 -03:00
|
|
|
exists. An :exc:`IOError` is raised if the IO object does not use a file
|
|
|
|
descriptor.
|
|
|
|
|
|
|
|
.. method:: flush()
|
|
|
|
|
2008-04-19 16:34:05 -03:00
|
|
|
Flush the write buffers of the stream if applicable. This does nothing
|
|
|
|
for read-only and non-blocking streams.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: isatty()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return ``True`` if the stream is interactive (i.e., connected to
|
2008-04-21 08:57:40 -03:00
|
|
|
a terminal/tty device).
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readable()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return ``True`` if the stream can be read from. If False, :meth:`read`
|
|
|
|
will raise :exc:`IOError`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readline([limit])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return one line from the stream. If *limit* is specified, at
|
|
|
|
most *limit* bytes will be read.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
The line terminator is always ``b'\n'`` for binary files; for text files,
|
2008-04-19 16:34:05 -03:00
|
|
|
the *newlines* argument to :func:`open` can be used to select the line
|
2008-04-12 23:01:27 -03:00
|
|
|
terminator(s) recognized.
|
|
|
|
|
|
|
|
.. method:: readlines([hint])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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*.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: seek(offset[, whence])
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
Change the stream position to the given byte *offset*. *offset* is
|
2008-04-12 23:01:27 -03:00
|
|
|
interpreted relative to the position indicated by *whence*. Values for
|
|
|
|
*whence* are:
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
* ``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
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return the new absolute position.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: seekable()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return ``True`` if the stream supports random access. If ``False``,
|
|
|
|
:meth:`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`IOError`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: tell()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return the current stream position.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
.. method:: truncate([size])
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Truncate the file to at most *size* bytes. *size* defaults to the current
|
2008-04-12 23:01:27 -03:00
|
|
|
file position, as returned by :meth:`tell`.
|
|
|
|
|
|
|
|
.. method:: writable()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return ``True`` if the stream supports writing. If ``False``,
|
2008-04-21 08:57:40 -03:00
|
|
|
:meth:`write` and :meth:`truncate` will raise :exc:`IOError`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: writelines(lines)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: RawIOBase
|
|
|
|
|
|
|
|
Base class for raw binary I/O. It inherits :class:`IOBase`. There is no
|
|
|
|
public constructor.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
In addition to the attributes and methods from :class:`IOBase`,
|
|
|
|
RawIOBase provides the following methods:
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: read([n])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readall()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return all the bytes from the stream until EOF, using multiple
|
|
|
|
calls to the stream if necessary.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readinto(b)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read up to len(b) bytes into bytearray *b* and return the number of bytes
|
|
|
|
read.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: write(b)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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).
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
Raw File I/O
|
|
|
|
------------
|
|
|
|
|
|
|
|
.. class:: FileIO(name[, mode])
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`FileIO` represents a file containing bytes data. It implements
|
2008-04-12 23:01:27 -03:00
|
|
|
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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
In addition to the attributes and methods from :class:`IOBase` and
|
|
|
|
:class:`RawIOBase`, :class:`FileIO` provides the following data
|
|
|
|
attributes and methods:
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. attribute:: mode
|
|
|
|
|
|
|
|
The mode as given in the constructor.
|
|
|
|
|
|
|
|
.. attribute:: name
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
The file name. This is the file descriptor of the file when no name is
|
|
|
|
given in the constructor.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: read([n])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.)
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readall()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: write(b)
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
Buffered Streams
|
|
|
|
----------------
|
|
|
|
|
|
|
|
.. 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])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return up to *n* bytes. If the argument is omitted, ``None``, or
|
2008-04-12 23:01:27 -03:00
|
|
|
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:: readinto(b)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read up to len(b) bytes into bytearray *b* and return the number of bytes
|
2008-04-12 23:01:27 -03:00
|
|
|
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)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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).
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
A :exc:`BlockingIOError` is raised if the buffer is full, and the
|
|
|
|
underlying raw stream cannot accept more data at the moment.
|
|
|
|
|
|
|
|
|
|
|
|
.. 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()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return ``bytes`` containing the entire contents of the buffer.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: read1()
|
|
|
|
|
2008-04-19 16:34:05 -03:00
|
|
|
In :class:`BytesIO`, this is the same as :meth:`read`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
.. method:: truncate([size])
|
2008-04-12 23:01:27 -03:00
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Truncate the buffer to at most *size* bytes. *size* defaults to the
|
|
|
|
current stream position, as returned by :meth:`tell`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: BufferedReader(raw[, buffer_size])
|
|
|
|
|
2008-04-19 16:34:05 -03:00
|
|
|
A buffer for a readable, sequential :class:`RawIOBase` object. It inherits
|
2008-04-12 23:01:27 -03:00
|
|
|
: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])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: read([n])
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return *n* bytes, or if *n* is not given or negative, until EOF
|
2008-04-12 23:01:27 -03:00
|
|
|
or if the read call would block in non-blocking mode.
|
|
|
|
|
|
|
|
.. method:: read1(n)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return up to *n* bytes with only one call on the raw stream. If
|
2008-04-12 23:01:27 -03:00
|
|
|
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:`DEAFULT_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
|
2008-04-21 08:57:40 -03:00
|
|
|
:exc:`BlockingIOError` should be raised if the raw stream blocks.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: write(b)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: BufferedRWPair(reader, writer[, buffer_size[, max_buffer_size]])
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
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`.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
*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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`TextIOBase` provides or overrides these data attributes and
|
|
|
|
methods in addition to those from :class:`IOBase`:
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. attribute:: encoding
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
The name of the encoding used to decode the stream's bytes into
|
2008-04-12 23:01:27 -03:00
|
|
|
strings, and to encode strings into bytes.
|
|
|
|
|
|
|
|
.. attribute:: newlines
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
A string, a tuple of strings, or ``None``, indicating the newlines
|
2008-04-12 23:01:27 -03:00
|
|
|
translated so far.
|
|
|
|
|
|
|
|
.. method:: read(n)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read and return at most *n* characters from the stream as a single
|
|
|
|
:class:`str`. If *n* is negative or ``None``, reads to EOF.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: readline()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Read until newline or EOF and return a single ``str``. If the stream is
|
|
|
|
already at EOF, an empty string is returned.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. method:: write(s)
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Write the string *s* to the stream and return the number of characters
|
|
|
|
written.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. 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`.
|
|
|
|
|
2008-04-19 16:34:05 -03:00
|
|
|
*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
|
2008-04-19 16:47:34 -03:00
|
|
|
(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.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
*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 seperator, :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.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`TextIOWrapper` provides these data attributes in addition to those of
|
2008-04-12 23:01:27 -03:00
|
|
|
:class:`TextIOBase` and its parents:
|
|
|
|
|
|
|
|
.. attribute:: errors
|
|
|
|
|
|
|
|
The encoding and decoding error setting.
|
|
|
|
|
|
|
|
.. attribute:: line_buffering
|
|
|
|
|
|
|
|
Whether line buffering is enabled.
|
Merged revisions 68133-68134,68141-68142,68145-68146,68148-68149,68159-68162,68166,68171-68174,68179,68195-68196,68210,68214-68215,68217-68222 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68133 | antoine.pitrou | 2009-01-01 16:38:03 +0100 (Thu, 01 Jan 2009) | 1 line
fill in actual issue number in tests
........
r68134 | hirokazu.yamamoto | 2009-01-01 16:45:39 +0100 (Thu, 01 Jan 2009) | 2 lines
Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
file with `str' filename on Windows.
........
r68141 | benjamin.peterson | 2009-01-01 17:43:12 +0100 (Thu, 01 Jan 2009) | 1 line
fix highlighting
........
r68142 | benjamin.peterson | 2009-01-01 18:29:49 +0100 (Thu, 01 Jan 2009) | 2 lines
welcome to 2009, Python!
........
r68145 | amaury.forgeotdarc | 2009-01-02 01:03:54 +0100 (Fri, 02 Jan 2009) | 5 lines
#4801 _collections module fails to build on cygwin.
_PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
and according to documentation it should not be used for extension modules.
........
r68146 | ronald.oussoren | 2009-01-02 11:44:46 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4472: "configure --enable-shared doesn't work on OSX"
........
r68148 | ronald.oussoren | 2009-01-02 11:48:31 +0100 (Fri, 02 Jan 2009) | 2 lines
Forgot to add a NEWS item in my previous checkin
........
r68149 | ronald.oussoren | 2009-01-02 11:50:48 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4780
........
r68159 | ronald.oussoren | 2009-01-02 15:48:17 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue 1627952
........
r68160 | ronald.oussoren | 2009-01-02 15:52:09 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue r1737832
........
r68161 | ronald.oussoren | 2009-01-02 16:00:05 +0100 (Fri, 02 Jan 2009) | 3 lines
Fix for issue 1149804
........
r68162 | ronald.oussoren | 2009-01-02 16:06:00 +0100 (Fri, 02 Jan 2009) | 3 lines
Fix for issue 4472 is incompatible with Cygwin, this patch
should fix that.
........
r68166 | benjamin.peterson | 2009-01-02 19:26:23 +0100 (Fri, 02 Jan 2009) | 1 line
document PyMemberDef
........
r68171 | georg.brandl | 2009-01-02 21:25:14 +0100 (Fri, 02 Jan 2009) | 3 lines
#4811: fix markup glitches (mostly remains of the conversion),
found by Gabriel Genellina.
........
r68172 | martin.v.loewis | 2009-01-02 21:32:55 +0100 (Fri, 02 Jan 2009) | 2 lines
Issue #4075: Use OutputDebugStringW in Py_FatalError.
........
r68173 | martin.v.loewis | 2009-01-02 21:40:14 +0100 (Fri, 02 Jan 2009) | 2 lines
Issue #4051: Prevent conflict of UNICODE macros in cPickle.
........
r68174 | benjamin.peterson | 2009-01-02 21:47:27 +0100 (Fri, 02 Jan 2009) | 1 line
fix compilation on non-Windows platforms
........
r68179 | raymond.hettinger | 2009-01-02 22:26:45 +0100 (Fri, 02 Jan 2009) | 1 line
Issue #4615. Document how to use itertools for de-duping.
........
r68195 | georg.brandl | 2009-01-03 14:45:15 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove useless string literal.
........
r68196 | georg.brandl | 2009-01-03 15:29:53 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix indentation.
........
r68210 | georg.brandl | 2009-01-03 20:10:12 +0100 (Sat, 03 Jan 2009) | 2 lines
Set eol-style correctly for mp_distributing.py.
........
r68214 | georg.brandl | 2009-01-03 20:44:48 +0100 (Sat, 03 Jan 2009) | 2 lines
Make indentation consistent.
........
r68215 | georg.brandl | 2009-01-03 21:15:14 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix role name.
........
r68217 | georg.brandl | 2009-01-03 21:30:15 +0100 (Sat, 03 Jan 2009) | 2 lines
Add rstlint, a little tool to find subtle markup problems and inconsistencies in the Doc sources.
........
r68218 | georg.brandl | 2009-01-03 21:38:59 +0100 (Sat, 03 Jan 2009) | 2 lines
Recognize usage of the default role.
........
r68219 | georg.brandl | 2009-01-03 21:47:01 +0100 (Sat, 03 Jan 2009) | 2 lines
Fix uses of the default role.
........
r68220 | georg.brandl | 2009-01-03 21:55:06 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove trailing whitespace.
........
r68221 | georg.brandl | 2009-01-03 22:04:55 +0100 (Sat, 03 Jan 2009) | 2 lines
Remove tabs from the documentation.
........
r68222 | georg.brandl | 2009-01-03 22:11:58 +0100 (Sat, 03 Jan 2009) | 2 lines
Disable the line length checker by default.
........
2009-01-03 17:55:17 -04:00
|
|
|
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
.. class:: StringIO([initial_value[, encoding[, errors[, newline]]]])
|
|
|
|
|
|
|
|
An in-memory stream for text. It in inherits :class:`TextIOWrapper`.
|
|
|
|
|
|
|
|
Create a new StringIO stream with an inital value, encoding, error handling,
|
|
|
|
and newline setting. See :class:`TextIOWrapper`\'s constructor for more
|
|
|
|
information.
|
|
|
|
|
2008-04-21 08:57:40 -03:00
|
|
|
:class:`StringIO` provides this method in addition to those from
|
2008-04-12 23:01:27 -03:00
|
|
|
:class:`TextIOWrapper` and its parents:
|
|
|
|
|
|
|
|
.. method:: getvalue()
|
|
|
|
|
2008-04-21 23:16:03 -03:00
|
|
|
Return a ``str`` containing the entire contents of the buffer.
|
2008-04-12 23:01:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. class:: IncrementalNewlineDecoder
|
|
|
|
|
|
|
|
A helper codec that decodes newlines for universal newlines mode. It
|
|
|
|
inherits :class:`codecs.IncrementalDecoder`.
|
|
|
|
|