~dkuhlman/python-training-materials/Materials

« back to all changes in this revision

Viewing changes to python-3.5.1-docs-html/library/io.html

  • Committer: Dave Kuhlman
  • Date: 2017-04-15 16:24:56 UTC
  • Revision ID: dkuhlman@davekuhlman.org-20170415162456-iav9vozzg4iwqwv3
Updated docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
 
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
 
 
4
 
 
5
 
<html xmlns="http://www.w3.org/1999/xhtml">
6
 
  <head>
7
 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
 
    
9
 
    <title>16.2. io — Core tools for working with streams &mdash; Python 3.5.1 documentation</title>
10
 
    
11
 
    <link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
12
 
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
13
 
    
14
 
    <script type="text/javascript">
15
 
      var DOCUMENTATION_OPTIONS = {
16
 
        URL_ROOT:    '../',
17
 
        VERSION:     '3.5.1',
18
 
        COLLAPSE_INDEX: false,
19
 
        FILE_SUFFIX: '.html',
20
 
        HAS_SOURCE:  true
21
 
      };
22
 
    </script>
23
 
    <script type="text/javascript" src="../_static/jquery.js"></script>
24
 
    <script type="text/javascript" src="../_static/underscore.js"></script>
25
 
    <script type="text/javascript" src="../_static/doctools.js"></script>
26
 
    <script type="text/javascript" src="../_static/sidebar.js"></script>
27
 
    <link rel="search" type="application/opensearchdescription+xml"
28
 
          title="Search within Python 3.5.1 documentation"
29
 
          href="../_static/opensearch.xml"/>
30
 
    <link rel="author" title="About these documents" href="../about.html" />
31
 
    <link rel="copyright" title="Copyright" href="../copyright.html" />
32
 
    <link rel="top" title="Python 3.5.1 documentation" href="../contents.html" />
33
 
    <link rel="up" title="16. Generic Operating System Services" href="allos.html" />
34
 
    <link rel="next" title="16.3. time — Time access and conversions" href="time.html" />
35
 
    <link rel="prev" title="16.1. os — Miscellaneous operating system interfaces" href="os.html" />
36
 
    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
37
 
    <script type="text/javascript" src="../_static/copybutton.js"></script>
38
 
    <script type="text/javascript" src="../_static/version_switch.js"></script>
39
 
    
40
 
 
41
 
 
42
 
  </head>
43
 
  <body role="document">  
44
 
    <div class="related" role="navigation" aria-label="related navigation">
45
 
      <h3>Navigation</h3>
46
 
      <ul>
47
 
        <li class="right" style="margin-right: 10px">
48
 
          <a href="../genindex.html" title="General Index"
49
 
             accesskey="I">index</a></li>
50
 
        <li class="right" >
51
 
          <a href="../py-modindex.html" title="Python Module Index"
52
 
             >modules</a> |</li>
53
 
        <li class="right" >
54
 
          <a href="time.html" title="16.3. time — Time access and conversions"
55
 
             accesskey="N">next</a> |</li>
56
 
        <li class="right" >
57
 
          <a href="os.html" title="16.1. os — Miscellaneous operating system interfaces"
58
 
             accesskey="P">previous</a> |</li>
59
 
        <li><img src="../_static/py.png" alt=""
60
 
                 style="vertical-align: middle; margin-top: -1px"/></li>
61
 
        <li><a href="https://www.python.org/">Python</a> &raquo;</li>
62
 
        <li>
63
 
          <span class="version_switcher_placeholder">3.5.1</span>
64
 
          <a href="../index.html">Documentation </a> &raquo;
65
 
        </li>
66
 
 
67
 
          <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &raquo;</li>
68
 
          <li class="nav-item nav-item-2"><a href="allos.html" accesskey="U">16. Generic Operating System Services</a> &raquo;</li> 
69
 
      </ul>
70
 
    </div>    
71
 
 
72
 
    <div class="document">
73
 
      <div class="documentwrapper">
74
 
        <div class="bodywrapper">
75
 
          <div class="body" role="main">
76
 
            
77
 
  <div class="section" id="module-io">
78
 
<span id="io-core-tools-for-working-with-streams"></span><h1>16.2. <a class="reference internal" href="#module-io" title="io: Core tools for working with streams."><code class="xref py py-mod docutils literal"><span class="pre">io</span></code></a> &#8212; Core tools for working with streams<a class="headerlink" href="#module-io" title="Permalink to this headline">¶</a></h1>
79
 
<div class="section" id="overview">
80
 
<span id="io-overview"></span><h2>16.2.1. Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
81
 
<p id="index-0">The <a class="reference internal" href="#module-io" title="io: Core tools for working with streams."><code class="xref py py-mod docutils literal"><span class="pre">io</span></code></a> module provides Python&#8217;s main facilities for dealing with various
82
 
types of I/O.  There are three main types of I/O: <em>text I/O</em>, <em>binary I/O</em>
83
 
and <em>raw I/O</em>.  These are generic categories, and various backing stores can
84
 
be used for each of them.  A concrete object belonging to any of these
85
 
categories is called a <a class="reference internal" href="../glossary.html#term-file-object"><span class="xref std std-term">file object</span></a>.  Other common terms are <em>stream</em>
86
 
and <em>file-like object</em>.</p>
87
 
<p>Independently of its category, each concrete stream object will also have
88
 
various capabilities: it can be read-only, write-only, or read-write. It can
89
 
also allow arbitrary random access (seeking forwards or backwards to any
90
 
location), or only sequential access (for example in the case of a socket or
91
 
pipe).</p>
92
 
<p>All streams are careful about the type of data you give to them.  For example
93
 
giving a <a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal"><span class="pre">str</span></code></a> object to the <code class="docutils literal"><span class="pre">write()</span></code> method of a binary stream
94
 
will raise a <code class="docutils literal"><span class="pre">TypeError</span></code>.  So will giving a <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> object to the
95
 
<code class="docutils literal"><span class="pre">write()</span></code> method of a text stream.</p>
96
 
<div class="versionchanged">
97
 
<p><span class="versionmodified">Changed in version 3.3: </span>Operations that used to raise <a class="reference internal" href="exceptions.html#IOError" title="IOError"><code class="xref py py-exc docutils literal"><span class="pre">IOError</span></code></a> now raise <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a>, since
98
 
<a class="reference internal" href="exceptions.html#IOError" title="IOError"><code class="xref py py-exc docutils literal"><span class="pre">IOError</span></code></a> is now an alias of <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a>.</p>
99
 
</div>
100
 
<div class="section" id="text-i-o">
101
 
<h3>16.2.1.1. Text I/O<a class="headerlink" href="#text-i-o" title="Permalink to this headline">¶</a></h3>
102
 
<p>Text I/O expects and produces <a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal"><span class="pre">str</span></code></a> objects.  This means that whenever
103
 
the backing store is natively made of bytes (such as in the case of a file),
104
 
encoding and decoding of data is made transparently as well as optional
105
 
translation of platform-specific newline characters.</p>
106
 
<p>The easiest way to create a text stream is with <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-meth docutils literal"><span class="pre">open()</span></code></a>, optionally
107
 
specifying an encoding:</p>
108
 
<div class="highlight-python3"><div class="highlight"><pre><span class="n">f</span> <span class="o">=</span> <span class="nb">open</span><span class="p">(</span><span class="s2">&quot;myfile.txt&quot;</span><span class="p">,</span> <span class="s2">&quot;r&quot;</span><span class="p">,</span> <span class="n">encoding</span><span class="o">=</span><span class="s2">&quot;utf-8&quot;</span><span class="p">)</span>
109
 
</pre></div>
110
 
</div>
111
 
<p>In-memory text streams are also available as <a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a> objects:</p>
112
 
<div class="highlight-python3"><div class="highlight"><pre><span class="n">f</span> <span class="o">=</span> <span class="n">io</span><span class="o">.</span><span class="n">StringIO</span><span class="p">(</span><span class="s2">&quot;some initial text data&quot;</span><span class="p">)</span>
113
 
</pre></div>
114
 
</div>
115
 
<p>The text stream API is described in detail in the documentation of
116
 
<a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a>.</p>
117
 
</div>
118
 
<div class="section" id="binary-i-o">
119
 
<h3>16.2.1.2. Binary I/O<a class="headerlink" href="#binary-i-o" title="Permalink to this headline">¶</a></h3>
120
 
<p>Binary I/O (also called <em>buffered I/O</em>) expects and produces <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a>
121
 
objects.  No encoding, decoding, or newline translation is performed.  This
122
 
category of streams can be used for all kinds of non-text data, and also when
123
 
manual control over the handling of text data is desired.</p>
124
 
<p>The easiest way to create a binary stream is with <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-meth docutils literal"><span class="pre">open()</span></code></a> with <code class="docutils literal"><span class="pre">'b'</span></code> in
125
 
the mode string:</p>
126
 
<div class="highlight-python3"><div class="highlight"><pre><span class="n">f</span> <span class="o">=</span> <span class="nb">open</span><span class="p">(</span><span class="s2">&quot;myfile.jpg&quot;</span><span class="p">,</span> <span class="s2">&quot;rb&quot;</span><span class="p">)</span>
127
 
</pre></div>
128
 
</div>
129
 
<p>In-memory binary streams are also available as <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a> objects:</p>
130
 
<div class="highlight-python3"><div class="highlight"><pre><span class="n">f</span> <span class="o">=</span> <span class="n">io</span><span class="o">.</span><span class="n">BytesIO</span><span class="p">(</span><span class="n">b</span><span class="s2">&quot;some initial binary data: </span><span class="se">\x00\x01</span><span class="s2">&quot;</span><span class="p">)</span>
131
 
</pre></div>
132
 
</div>
133
 
<p>The binary stream API is described in detail in the docs of
134
 
<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>.</p>
135
 
<p>Other library modules may provide additional ways to create text or binary
136
 
streams.  See <a class="reference internal" href="socket.html#socket.socket.makefile" title="socket.socket.makefile"><code class="xref py py-meth docutils literal"><span class="pre">socket.socket.makefile()</span></code></a> for example.</p>
137
 
</div>
138
 
<div class="section" id="raw-i-o">
139
 
<h3>16.2.1.3. Raw I/O<a class="headerlink" href="#raw-i-o" title="Permalink to this headline">¶</a></h3>
140
 
<p>Raw I/O (also called <em>unbuffered I/O</em>) is generally used as a low-level
141
 
building-block for binary and text streams; it is rarely useful to directly
142
 
manipulate a raw stream from user code.  Nevertheless, you can create a raw
143
 
stream by opening a file in binary mode with buffering disabled:</p>
144
 
<div class="highlight-python3"><div class="highlight"><pre><span class="n">f</span> <span class="o">=</span> <span class="nb">open</span><span class="p">(</span><span class="s2">&quot;myfile.jpg&quot;</span><span class="p">,</span> <span class="s2">&quot;rb&quot;</span><span class="p">,</span> <span class="n">buffering</span><span class="o">=</span><span class="mi">0</span><span class="p">)</span>
145
 
</pre></div>
146
 
</div>
147
 
<p>The raw stream API is described in detail in the docs of <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>.</p>
148
 
</div>
149
 
</div>
150
 
<div class="section" id="high-level-module-interface">
151
 
<h2>16.2.2. High-level Module Interface<a class="headerlink" href="#high-level-module-interface" title="Permalink to this headline">¶</a></h2>
152
 
<dl class="data">
153
 
<dt id="io.DEFAULT_BUFFER_SIZE">
154
 
<code class="descclassname">io.</code><code class="descname">DEFAULT_BUFFER_SIZE</code><a class="headerlink" href="#io.DEFAULT_BUFFER_SIZE" title="Permalink to this definition">¶</a></dt>
155
 
<dd><p>An int containing the default buffer size used by the module&#8217;s buffered I/O
156
 
classes.  <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> uses the file&#8217;s blksize (as obtained by
157
 
<a class="reference internal" href="os.html#os.stat" title="os.stat"><code class="xref py py-func docutils literal"><span class="pre">os.stat()</span></code></a>) if possible.</p>
158
 
</dd></dl>
159
 
 
160
 
<dl class="function">
161
 
<dt id="io.open">
162
 
<code class="descclassname">io.</code><code class="descname">open</code><span class="sig-paren">(</span><em>file</em>, <em>mode='r'</em>, <em>buffering=-1</em>, <em>encoding=None</em>, <em>errors=None</em>, <em>newline=None</em>, <em>closefd=True</em>, <em>opener=None</em><span class="sig-paren">)</span><a class="headerlink" href="#io.open" title="Permalink to this definition">¶</a></dt>
163
 
<dd><p>This is an alias for the builtin <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> function.</p>
164
 
</dd></dl>
165
 
 
166
 
<dl class="exception">
167
 
<dt id="io.BlockingIOError">
168
 
<em class="property">exception </em><code class="descclassname">io.</code><code class="descname">BlockingIOError</code><a class="headerlink" href="#io.BlockingIOError" title="Permalink to this definition">¶</a></dt>
169
 
<dd><p>This is a compatibility alias for the builtin <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a>
170
 
exception.</p>
171
 
</dd></dl>
172
 
 
173
 
<dl class="exception">
174
 
<dt id="io.UnsupportedOperation">
175
 
<em class="property">exception </em><code class="descclassname">io.</code><code class="descname">UnsupportedOperation</code><a class="headerlink" href="#io.UnsupportedOperation" title="Permalink to this definition">¶</a></dt>
176
 
<dd><p>An exception inheriting <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a> and <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-exc docutils literal"><span class="pre">ValueError</span></code></a> that is raised
177
 
when an unsupported operation is called on a stream.</p>
178
 
</dd></dl>
179
 
 
180
 
<div class="section" id="in-memory-streams">
181
 
<h3>16.2.2.1. In-memory streams<a class="headerlink" href="#in-memory-streams" title="Permalink to this headline">¶</a></h3>
182
 
<p>It is also possible to use a <a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal"><span class="pre">str</span></code></a> or <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a>-like object as a
183
 
file for both reading and writing.  For strings <a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a> can be used
184
 
like a file opened in text mode.  <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a> can be used like a file
185
 
opened in binary mode.  Both provide full read-write capabilities with random
186
 
access.</p>
187
 
<div class="admonition seealso">
188
 
<p class="first admonition-title">See also</p>
189
 
<dl class="last docutils">
190
 
<dt><a class="reference internal" href="sys.html#module-sys" title="sys: Access system-specific parameters and functions."><code class="xref py py-mod docutils literal"><span class="pre">sys</span></code></a></dt>
191
 
<dd>contains the standard IO streams: <a class="reference internal" href="sys.html#sys.stdin" title="sys.stdin"><code class="xref py py-data docutils literal"><span class="pre">sys.stdin</span></code></a>, <a class="reference internal" href="sys.html#sys.stdout" title="sys.stdout"><code class="xref py py-data docutils literal"><span class="pre">sys.stdout</span></code></a>,
192
 
and <a class="reference internal" href="sys.html#sys.stderr" title="sys.stderr"><code class="xref py py-data docutils literal"><span class="pre">sys.stderr</span></code></a>.</dd>
193
 
</dl>
194
 
</div>
195
 
</div>
196
 
</div>
197
 
<div class="section" id="class-hierarchy">
198
 
<h2>16.2.3. Class hierarchy<a class="headerlink" href="#class-hierarchy" title="Permalink to this headline">¶</a></h2>
199
 
<p>The implementation of I/O streams is organized as a hierarchy of classes.  First
200
 
<a class="reference internal" href="../glossary.html#term-abstract-base-class"><span class="xref std std-term">abstract base classes</span></a> (ABCs), which are used to
201
 
specify the various categories of streams, then concrete classes providing the
202
 
standard stream implementations.</p>
203
 
<blockquote>
204
 
<div><div class="admonition note">
205
 
<p class="first admonition-title">Note</p>
206
 
<p class="last">The abstract base classes also provide default implementations of some
207
 
methods in order to help implementation of concrete stream classes.  For
208
 
example, <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> provides unoptimized implementations of
209
 
<code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code> and <a class="reference internal" href="#io.IOBase.readline" title="io.IOBase.readline"><code class="xref py py-meth docutils literal"><span class="pre">readline()</span></code></a>.</p>
210
 
</div>
211
 
</div></blockquote>
212
 
<p>At the top of the I/O hierarchy is the abstract base class <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>.  It
213
 
defines the basic interface to a stream.  Note, however, that there is no
214
 
separation between reading and writing to streams; implementations are allowed
215
 
to raise <a class="reference internal" href="#io.UnsupportedOperation" title="io.UnsupportedOperation"><code class="xref py py-exc docutils literal"><span class="pre">UnsupportedOperation</span></code></a> if they do not support a given operation.</p>
216
 
<p>The <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> ABC extends <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>.  It deals with the reading
217
 
and writing of bytes to a stream.  <a class="reference internal" href="#io.FileIO" title="io.FileIO"><code class="xref py py-class docutils literal"><span class="pre">FileIO</span></code></a> subclasses <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>
218
 
to provide an interface to files in the machine&#8217;s file system.</p>
219
 
<p>The <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> ABC deals with buffering on a raw byte stream
220
 
(<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>).  Its subclasses, <a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a>,
221
 
<a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a>, and <a class="reference internal" href="#io.BufferedRWPair" title="io.BufferedRWPair"><code class="xref py py-class docutils literal"><span class="pre">BufferedRWPair</span></code></a> buffer streams that are
222
 
readable, writable, and both readable and writable.  <a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a>
223
 
provides a buffered interface to random access streams.  Another
224
 
<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> subclass, <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a>, is a stream of in-memory
225
 
bytes.</p>
226
 
<p>The <a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> ABC, another subclass of <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>, deals with
227
 
streams whose bytes represent text, and handles encoding and decoding to and
228
 
from strings. <a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a>, which extends it, is a buffered text
229
 
interface to a buffered raw stream (<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>). Finally,
230
 
<a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a> is an in-memory stream for text.</p>
231
 
<p>Argument names are not part of the specification, and only the arguments of
232
 
<a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> are intended to be used as keyword arguments.</p>
233
 
<p>The following table summarizes the ABCs provided by the <a class="reference internal" href="#module-io" title="io: Core tools for working with streams."><code class="xref py py-mod docutils literal"><span class="pre">io</span></code></a> module:</p>
234
 
<table border="1" class="docutils">
235
 
<colgroup>
236
 
<col width="21%" />
237
 
<col width="15%" />
238
 
<col width="21%" />
239
 
<col width="43%" />
240
 
</colgroup>
241
 
<thead valign="bottom">
242
 
<tr class="row-odd"><th class="head">ABC</th>
243
 
<th class="head">Inherits</th>
244
 
<th class="head">Stub Methods</th>
245
 
<th class="head">Mixin Methods and Properties</th>
246
 
</tr>
247
 
</thead>
248
 
<tbody valign="top">
249
 
<tr class="row-even"><td><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a></td>
250
 
<td>&nbsp;</td>
251
 
<td><code class="docutils literal"><span class="pre">fileno</span></code>, <code class="docutils literal"><span class="pre">seek</span></code>,
252
 
and <code class="docutils literal"><span class="pre">truncate</span></code></td>
253
 
<td><code class="docutils literal"><span class="pre">close</span></code>, <code class="docutils literal"><span class="pre">closed</span></code>, <code class="docutils literal"><span class="pre">__enter__</span></code>,
254
 
<code class="docutils literal"><span class="pre">__exit__</span></code>, <code class="docutils literal"><span class="pre">flush</span></code>, <code class="docutils literal"><span class="pre">isatty</span></code>, <code class="docutils literal"><span class="pre">__iter__</span></code>,
255
 
<code class="docutils literal"><span class="pre">__next__</span></code>, <code class="docutils literal"><span class="pre">readable</span></code>, <code class="docutils literal"><span class="pre">readline</span></code>,
256
 
<code class="docutils literal"><span class="pre">readlines</span></code>, <code class="docutils literal"><span class="pre">seekable</span></code>, <code class="docutils literal"><span class="pre">tell</span></code>,
257
 
<code class="docutils literal"><span class="pre">writable</span></code>, and <code class="docutils literal"><span class="pre">writelines</span></code></td>
258
 
</tr>
259
 
<tr class="row-odd"><td><a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a></td>
260
 
<td><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a></td>
261
 
<td><code class="docutils literal"><span class="pre">readinto</span></code> and
262
 
<code class="docutils literal"><span class="pre">write</span></code></td>
263
 
<td>Inherited <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> methods, <code class="docutils literal"><span class="pre">read</span></code>,
264
 
and <code class="docutils literal"><span class="pre">readall</span></code></td>
265
 
</tr>
266
 
<tr class="row-even"><td><a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a></td>
267
 
<td><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a></td>
268
 
<td><code class="docutils literal"><span class="pre">detach</span></code>, <code class="docutils literal"><span class="pre">read</span></code>,
269
 
<code class="docutils literal"><span class="pre">read1</span></code>, and <code class="docutils literal"><span class="pre">write</span></code></td>
270
 
<td>Inherited <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> methods, <code class="docutils literal"><span class="pre">readinto</span></code></td>
271
 
</tr>
272
 
<tr class="row-odd"><td><a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a></td>
273
 
<td><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a></td>
274
 
<td><code class="docutils literal"><span class="pre">detach</span></code>, <code class="docutils literal"><span class="pre">read</span></code>,
275
 
<code class="docutils literal"><span class="pre">readline</span></code>, and
276
 
<code class="docutils literal"><span class="pre">write</span></code></td>
277
 
<td>Inherited <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> methods, <code class="docutils literal"><span class="pre">encoding</span></code>,
278
 
<code class="docutils literal"><span class="pre">errors</span></code>, and <code class="docutils literal"><span class="pre">newlines</span></code></td>
279
 
</tr>
280
 
</tbody>
281
 
</table>
282
 
<div class="section" id="i-o-base-classes">
283
 
<h3>16.2.3.1. I/O Base Classes<a class="headerlink" href="#i-o-base-classes" title="Permalink to this headline">¶</a></h3>
284
 
<dl class="class">
285
 
<dt id="io.IOBase">
286
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">IOBase</code><a class="headerlink" href="#io.IOBase" title="Permalink to this definition">¶</a></dt>
287
 
<dd><p>The abstract base class for all I/O classes, acting on streams of bytes.
288
 
There is no public constructor.</p>
289
 
<p>This class provides empty abstract implementations for many methods
290
 
that derived classes can override selectively; the default
291
 
implementations represent a file that cannot be read, written or
292
 
seeked.</p>
293
 
<p>Even though <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> does not declare <code class="xref py py-meth docutils literal"><span class="pre">read()</span></code>, <code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code>,
294
 
or <code class="xref py py-meth docutils literal"><span class="pre">write()</span></code> because their signatures will vary, implementations and
295
 
clients should consider those methods part of the interface.  Also,
296
 
implementations may raise a <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-exc docutils literal"><span class="pre">ValueError</span></code></a> (or <a class="reference internal" href="#io.UnsupportedOperation" title="io.UnsupportedOperation"><code class="xref py py-exc docutils literal"><span class="pre">UnsupportedOperation</span></code></a>)
297
 
when operations they do not support are called.</p>
298
 
<p>The basic type used for binary data read from or written to a file is
299
 
<a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a>.  <a class="reference internal" href="functions.html#bytearray" title="bytearray"><code class="xref py py-class docutils literal"><span class="pre">bytearray</span></code></a>s are accepted too, and in some cases
300
 
(such as <code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code>) required.  Text I/O classes work with
301
 
<a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal"><span class="pre">str</span></code></a> data.</p>
302
 
<p>Note that calling any method (even inquiries) on a closed stream is
303
 
undefined.  Implementations may raise <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-exc docutils literal"><span class="pre">ValueError</span></code></a> in this case.</p>
304
 
<p><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> (and its subclasses) supports the iterator protocol, meaning
305
 
that an <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> object can be iterated over yielding the lines in a
306
 
stream.  Lines are defined slightly differently depending on whether the
307
 
stream is a binary stream (yielding bytes), or a text stream (yielding
308
 
character strings).  See <a class="reference internal" href="#io.IOBase.readline" title="io.IOBase.readline"><code class="xref py py-meth docutils literal"><span class="pre">readline()</span></code></a> below.</p>
309
 
<p><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> is also a context manager and therefore supports the
310
 
<a class="reference internal" href="../reference/compound_stmts.html#with"><code class="xref std std-keyword docutils literal"><span class="pre">with</span></code></a> statement.  In this example, <em>file</em> is closed after the
311
 
<a class="reference internal" href="../reference/compound_stmts.html#with"><code class="xref std std-keyword docutils literal"><span class="pre">with</span></code></a> statement&#8217;s suite is finished&#8212;even if an exception occurs:</p>
312
 
<div class="highlight-python3"><div class="highlight"><pre><span class="k">with</span> <span class="nb">open</span><span class="p">(</span><span class="s1">&#39;spam.txt&#39;</span><span class="p">,</span> <span class="s1">&#39;w&#39;</span><span class="p">)</span> <span class="k">as</span> <span class="n">file</span><span class="p">:</span>
313
 
    <span class="n">file</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s1">&#39;Spam and eggs!&#39;</span><span class="p">)</span>
314
 
</pre></div>
315
 
</div>
316
 
<p><a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> provides these data attributes and methods:</p>
317
 
<dl class="method">
318
 
<dt id="io.IOBase.close">
319
 
<code class="descname">close</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.close" title="Permalink to this definition">¶</a></dt>
320
 
<dd><p>Flush and close this stream. This method has no effect if the file is
321
 
already closed. Once the file is closed, any operation on the file
322
 
(e.g. reading or writing) will raise a <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-exc docutils literal"><span class="pre">ValueError</span></code></a>.</p>
323
 
<p>As a convenience, it is allowed to call this method more than once;
324
 
only the first call, however, will have an effect.</p>
325
 
</dd></dl>
326
 
 
327
 
<dl class="attribute">
328
 
<dt id="io.IOBase.closed">
329
 
<code class="descname">closed</code><a class="headerlink" href="#io.IOBase.closed" title="Permalink to this definition">¶</a></dt>
330
 
<dd><p><code class="docutils literal"><span class="pre">True</span></code> if the stream is closed.</p>
331
 
</dd></dl>
332
 
 
333
 
<dl class="method">
334
 
<dt id="io.IOBase.fileno">
335
 
<code class="descname">fileno</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.fileno" title="Permalink to this definition">¶</a></dt>
336
 
<dd><p>Return the underlying file descriptor (an integer) of the stream if it
337
 
exists.  An <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a> is raised if the IO object does not use a file
338
 
descriptor.</p>
339
 
</dd></dl>
340
 
 
341
 
<dl class="method">
342
 
<dt id="io.IOBase.flush">
343
 
<code class="descname">flush</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.flush" title="Permalink to this definition">¶</a></dt>
344
 
<dd><p>Flush the write buffers of the stream if applicable.  This does nothing
345
 
for read-only and non-blocking streams.</p>
346
 
</dd></dl>
347
 
 
348
 
<dl class="method">
349
 
<dt id="io.IOBase.isatty">
350
 
<code class="descname">isatty</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.isatty" title="Permalink to this definition">¶</a></dt>
351
 
<dd><p>Return <code class="docutils literal"><span class="pre">True</span></code> if the stream is interactive (i.e., connected to
352
 
a terminal/tty device).</p>
353
 
</dd></dl>
354
 
 
355
 
<dl class="method">
356
 
<dt id="io.IOBase.readable">
357
 
<code class="descname">readable</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.readable" title="Permalink to this definition">¶</a></dt>
358
 
<dd><p>Return <code class="docutils literal"><span class="pre">True</span></code> if the stream can be read from.  If <code class="docutils literal"><span class="pre">False</span></code>, <code class="xref py py-meth docutils literal"><span class="pre">read()</span></code>
359
 
will raise <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a>.</p>
360
 
</dd></dl>
361
 
 
362
 
<dl class="method">
363
 
<dt id="io.IOBase.readline">
364
 
<code class="descname">readline</code><span class="sig-paren">(</span><em>size=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.readline" title="Permalink to this definition">¶</a></dt>
365
 
<dd><p>Read and return one line from the stream.  If <em>size</em> is specified, at
366
 
most <em>size</em> bytes will be read.</p>
367
 
<p>The line terminator is always <code class="docutils literal"><span class="pre">b'\n'</span></code> for binary files; for text files,
368
 
the <em>newline</em> argument to <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> can be used to select the line
369
 
terminator(s) recognized.</p>
370
 
</dd></dl>
371
 
 
372
 
<dl class="method">
373
 
<dt id="io.IOBase.readlines">
374
 
<code class="descname">readlines</code><span class="sig-paren">(</span><em>hint=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.readlines" title="Permalink to this definition">¶</a></dt>
375
 
<dd><p>Read and return a list of lines from the stream.  <em>hint</em> can be specified
376
 
to control the number of lines read: no more lines will be read if the
377
 
total size (in bytes/characters) of all lines so far exceeds <em>hint</em>.</p>
378
 
<p>Note that it&#8217;s already possible to iterate on file objects using <code class="docutils literal"><span class="pre">for</span>
379
 
<span class="pre">line</span> <span class="pre">in</span> <span class="pre">file:</span> <span class="pre">...</span></code> without calling <code class="docutils literal"><span class="pre">file.readlines()</span></code>.</p>
380
 
</dd></dl>
381
 
 
382
 
<dl class="method">
383
 
<dt id="io.IOBase.seek">
384
 
<code class="descname">seek</code><span class="sig-paren">(</span><em>offset</em><span class="optional">[</span>, <em>whence</em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.seek" title="Permalink to this definition">¶</a></dt>
385
 
<dd><p>Change the stream position to the given byte <em>offset</em>.  <em>offset</em> is
386
 
interpreted relative to the position indicated by <em>whence</em>.  The default
387
 
value for <em>whence</em> is <code class="xref py py-data docutils literal"><span class="pre">SEEK_SET</span></code>.  Values for <em>whence</em> are:</p>
388
 
<ul class="simple">
389
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_SET</span></code> or <code class="docutils literal"><span class="pre">0</span></code> &#8211; start of the stream (the default);
390
 
<em>offset</em> should be zero or positive</li>
391
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_CUR</span></code> or <code class="docutils literal"><span class="pre">1</span></code> &#8211; current stream position; <em>offset</em> may
392
 
be negative</li>
393
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_END</span></code> or <code class="docutils literal"><span class="pre">2</span></code> &#8211; end of the stream; <em>offset</em> is usually
394
 
negative</li>
395
 
</ul>
396
 
<p>Return the new absolute position.</p>
397
 
<div class="versionadded">
398
 
<p><span class="versionmodified">New in version 3.1: </span>The <code class="docutils literal"><span class="pre">SEEK_*</span></code> constants.</p>
399
 
</div>
400
 
<div class="versionadded">
401
 
<p><span class="versionmodified">New in version 3.3: </span>Some operating systems could support additional values, like
402
 
<code class="xref py py-data docutils literal"><span class="pre">os.SEEK_HOLE</span></code> or <code class="xref py py-data docutils literal"><span class="pre">os.SEEK_DATA</span></code>. The valid values
403
 
for a file could depend on it being open in text or binary mode.</p>
404
 
</div>
405
 
</dd></dl>
406
 
 
407
 
<dl class="method">
408
 
<dt id="io.IOBase.seekable">
409
 
<code class="descname">seekable</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.seekable" title="Permalink to this definition">¶</a></dt>
410
 
<dd><p>Return <code class="docutils literal"><span class="pre">True</span></code> if the stream supports random access.  If <code class="docutils literal"><span class="pre">False</span></code>,
411
 
<a class="reference internal" href="#io.IOBase.seek" title="io.IOBase.seek"><code class="xref py py-meth docutils literal"><span class="pre">seek()</span></code></a>, <a class="reference internal" href="#io.IOBase.tell" title="io.IOBase.tell"><code class="xref py py-meth docutils literal"><span class="pre">tell()</span></code></a> and <a class="reference internal" href="#io.IOBase.truncate" title="io.IOBase.truncate"><code class="xref py py-meth docutils literal"><span class="pre">truncate()</span></code></a> will raise <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a>.</p>
412
 
</dd></dl>
413
 
 
414
 
<dl class="method">
415
 
<dt id="io.IOBase.tell">
416
 
<code class="descname">tell</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.tell" title="Permalink to this definition">¶</a></dt>
417
 
<dd><p>Return the current stream position.</p>
418
 
</dd></dl>
419
 
 
420
 
<dl class="method">
421
 
<dt id="io.IOBase.truncate">
422
 
<code class="descname">truncate</code><span class="sig-paren">(</span><em>size=None</em><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.truncate" title="Permalink to this definition">¶</a></dt>
423
 
<dd><p>Resize the stream to the given <em>size</em> in bytes (or the current position
424
 
if <em>size</em> is not specified).  The current stream position isn&#8217;t changed.
425
 
This resizing can extend or reduce the current file size.  In case of
426
 
extension, the contents of the new file area depend on the platform
427
 
(on most systems, additional bytes are zero-filled).  The new file size
428
 
is returned.</p>
429
 
</dd></dl>
430
 
 
431
 
<div class="versionchanged">
432
 
<p><span class="versionmodified">Changed in version 3.5: </span>Windows will now zero-fill files when extending.</p>
433
 
</div>
434
 
<dl class="method">
435
 
<dt id="io.IOBase.writable">
436
 
<code class="descname">writable</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.writable" title="Permalink to this definition">¶</a></dt>
437
 
<dd><p>Return <code class="docutils literal"><span class="pre">True</span></code> if the stream supports writing.  If <code class="docutils literal"><span class="pre">False</span></code>,
438
 
<code class="xref py py-meth docutils literal"><span class="pre">write()</span></code> and <a class="reference internal" href="#io.IOBase.truncate" title="io.IOBase.truncate"><code class="xref py py-meth docutils literal"><span class="pre">truncate()</span></code></a> will raise <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a>.</p>
439
 
</dd></dl>
440
 
 
441
 
<dl class="method">
442
 
<dt id="io.IOBase.writelines">
443
 
<code class="descname">writelines</code><span class="sig-paren">(</span><em>lines</em><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.writelines" title="Permalink to this definition">¶</a></dt>
444
 
<dd><p>Write a list of lines to the stream.  Line separators are not added, so it
445
 
is usual for each of the lines provided to have a line separator at the
446
 
end.</p>
447
 
</dd></dl>
448
 
 
449
 
<dl class="method">
450
 
<dt id="io.IOBase.__del__">
451
 
<code class="descname">__del__</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.IOBase.__del__" title="Permalink to this definition">¶</a></dt>
452
 
<dd><p>Prepare for object destruction. <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> provides a default
453
 
implementation of this method that calls the instance&#8217;s
454
 
<a class="reference internal" href="#io.IOBase.close" title="io.IOBase.close"><code class="xref py py-meth docutils literal"><span class="pre">close()</span></code></a> method.</p>
455
 
</dd></dl>
456
 
 
457
 
</dd></dl>
458
 
 
459
 
<dl class="class">
460
 
<dt id="io.RawIOBase">
461
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">RawIOBase</code><a class="headerlink" href="#io.RawIOBase" title="Permalink to this definition">¶</a></dt>
462
 
<dd><p>Base class for raw binary I/O.  It inherits <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>.  There is no
463
 
public constructor.</p>
464
 
<p>Raw binary I/O typically provides low-level access to an underlying OS
465
 
device or API, and does not try to encapsulate it in high-level primitives
466
 
(this is left to Buffered I/O and Text I/O, described later in this page).</p>
467
 
<p>In addition to the attributes and methods from <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>,
468
 
<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> provides the following methods:</p>
469
 
<dl class="method">
470
 
<dt id="io.RawIOBase.read">
471
 
<code class="descname">read</code><span class="sig-paren">(</span><em>size=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.RawIOBase.read" title="Permalink to this definition">¶</a></dt>
472
 
<dd><p>Read up to <em>size</em> bytes from the object and return them.  As a convenience,
473
 
if <em>size</em> is unspecified or -1, <a class="reference internal" href="#io.RawIOBase.readall" title="io.RawIOBase.readall"><code class="xref py py-meth docutils literal"><span class="pre">readall()</span></code></a> is called.  Otherwise,
474
 
only one system call is ever made.  Fewer than <em>size</em> bytes may be
475
 
returned if the operating system call returns fewer than <em>size</em> bytes.</p>
476
 
<p>If 0 bytes are returned, and <em>size</em> was not 0, this indicates end of file.
477
 
If the object is in non-blocking mode and no bytes are available,
478
 
<code class="docutils literal"><span class="pre">None</span></code> is returned.</p>
479
 
</dd></dl>
480
 
 
481
 
<dl class="method">
482
 
<dt id="io.RawIOBase.readall">
483
 
<code class="descname">readall</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.RawIOBase.readall" title="Permalink to this definition">¶</a></dt>
484
 
<dd><p>Read and return all the bytes from the stream until EOF, using multiple
485
 
calls to the stream if necessary.</p>
486
 
</dd></dl>
487
 
 
488
 
<dl class="method">
489
 
<dt id="io.RawIOBase.readinto">
490
 
<code class="descname">readinto</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.RawIOBase.readinto" title="Permalink to this definition">¶</a></dt>
491
 
<dd><p>Read up to <code class="docutils literal"><span class="pre">len(b)</span></code> bytes into <a class="reference internal" href="functions.html#bytearray" title="bytearray"><code class="xref py py-class docutils literal"><span class="pre">bytearray</span></code></a> <em>b</em> and return the
492
 
number of bytes read.  If the object is in non-blocking mode and no bytes
493
 
are available, <code class="docutils literal"><span class="pre">None</span></code> is returned.</p>
494
 
</dd></dl>
495
 
 
496
 
<dl class="method">
497
 
<dt id="io.RawIOBase.write">
498
 
<code class="descname">write</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.RawIOBase.write" title="Permalink to this definition">¶</a></dt>
499
 
<dd><p>Write the given <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> or <a class="reference internal" href="functions.html#bytearray" title="bytearray"><code class="xref py py-class docutils literal"><span class="pre">bytearray</span></code></a> object, <em>b</em>, to the
500
 
underlying raw stream and return the number of bytes written.  This can
501
 
be less than <code class="docutils literal"><span class="pre">len(b)</span></code>, depending on specifics of the underlying raw
502
 
stream, and especially if it is in non-blocking mode.  <code class="docutils literal"><span class="pre">None</span></code> is
503
 
returned if the raw stream is set not to block and no single byte could
504
 
be readily written to it.</p>
505
 
</dd></dl>
506
 
 
507
 
</dd></dl>
508
 
 
509
 
<dl class="class">
510
 
<dt id="io.BufferedIOBase">
511
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BufferedIOBase</code><a class="headerlink" href="#io.BufferedIOBase" title="Permalink to this definition">¶</a></dt>
512
 
<dd><p>Base class for binary streams that support some kind of buffering.
513
 
It inherits <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>. There is no public constructor.</p>
514
 
<p>The main difference with <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> is that methods <a class="reference internal" href="#io.BufferedIOBase.read" title="io.BufferedIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a>,
515
 
<a class="reference internal" href="#io.BufferedIOBase.readinto" title="io.BufferedIOBase.readinto"><code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code></a> and <a class="reference internal" href="#io.BufferedIOBase.write" title="io.BufferedIOBase.write"><code class="xref py py-meth docutils literal"><span class="pre">write()</span></code></a> will try (respectively) to read as much
516
 
input as requested or to consume all given output, at the expense of
517
 
making perhaps more than one system call.</p>
518
 
<p>In addition, those methods can raise <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> if the
519
 
underlying raw stream is in non-blocking mode and cannot take or give
520
 
enough data; unlike their <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> counterparts, they will
521
 
never return <code class="docutils literal"><span class="pre">None</span></code>.</p>
522
 
<p>Besides, the <a class="reference internal" href="#io.BufferedIOBase.read" title="io.BufferedIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a> method does not have a default
523
 
implementation that defers to <a class="reference internal" href="#io.BufferedIOBase.readinto" title="io.BufferedIOBase.readinto"><code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code></a>.</p>
524
 
<p>A typical <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> implementation should not inherit from a
525
 
<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> implementation, but wrap one, like
526
 
<a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a> and <a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a> do.</p>
527
 
<p><a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> provides or overrides these methods and attribute in
528
 
addition to those from <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>:</p>
529
 
<dl class="attribute">
530
 
<dt id="io.BufferedIOBase.raw">
531
 
<code class="descname">raw</code><a class="headerlink" href="#io.BufferedIOBase.raw" title="Permalink to this definition">¶</a></dt>
532
 
<dd><p>The underlying raw stream (a <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> instance) that
533
 
<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> deals with.  This is not part of the
534
 
<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> API and may not exist on some implementations.</p>
535
 
</dd></dl>
536
 
 
537
 
<dl class="method">
538
 
<dt id="io.BufferedIOBase.detach">
539
 
<code class="descname">detach</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.detach" title="Permalink to this definition">¶</a></dt>
540
 
<dd><p>Separate the underlying raw stream from the buffer and return it.</p>
541
 
<p>After the raw stream has been detached, the buffer is in an unusable
542
 
state.</p>
543
 
<p>Some buffers, like <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a>, do not have the concept of a single
544
 
raw stream to return from this method.  They raise
545
 
<a class="reference internal" href="#io.UnsupportedOperation" title="io.UnsupportedOperation"><code class="xref py py-exc docutils literal"><span class="pre">UnsupportedOperation</span></code></a>.</p>
546
 
<div class="versionadded">
547
 
<p><span class="versionmodified">New in version 3.1.</span></p>
548
 
</div>
549
 
</dd></dl>
550
 
 
551
 
<dl class="method">
552
 
<dt id="io.BufferedIOBase.read">
553
 
<code class="descname">read</code><span class="sig-paren">(</span><em>size=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.read" title="Permalink to this definition">¶</a></dt>
554
 
<dd><p>Read and return up to <em>size</em> bytes.  If the argument is omitted, <code class="docutils literal"><span class="pre">None</span></code>,
555
 
or negative, data is read and returned until EOF is reached.  An empty
556
 
<a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> object is returned if the stream is already at EOF.</p>
557
 
<p>If the argument is positive, and the underlying raw stream is not
558
 
interactive, multiple raw reads may be issued to satisfy the byte count
559
 
(unless EOF is reached first).  But for interactive raw streams, at most
560
 
one raw read will be issued, and a short result does not imply that EOF is
561
 
imminent.</p>
562
 
<p>A <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> is raised if the underlying raw stream is in
563
 
non blocking-mode, and has no data available at the moment.</p>
564
 
</dd></dl>
565
 
 
566
 
<dl class="method">
567
 
<dt id="io.BufferedIOBase.read1">
568
 
<code class="descname">read1</code><span class="sig-paren">(</span><em>size=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.read1" title="Permalink to this definition">¶</a></dt>
569
 
<dd><p>Read and return up to <em>size</em> bytes, with at most one call to the
570
 
underlying raw stream&#8217;s <a class="reference internal" href="#io.RawIOBase.read" title="io.RawIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a> (or
571
 
<a class="reference internal" href="#io.RawIOBase.readinto" title="io.RawIOBase.readinto"><code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code></a>) method.  This can be useful if you are
572
 
implementing your own buffering on top of a <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>
573
 
object.</p>
574
 
</dd></dl>
575
 
 
576
 
<dl class="method">
577
 
<dt id="io.BufferedIOBase.readinto">
578
 
<code class="descname">readinto</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.readinto" title="Permalink to this definition">¶</a></dt>
579
 
<dd><p>Read up to <code class="docutils literal"><span class="pre">len(b)</span></code> bytes into bytearray <em>b</em> and return the number of
580
 
bytes read.</p>
581
 
<p>Like <a class="reference internal" href="#io.BufferedIOBase.read" title="io.BufferedIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a>, multiple reads may be issued to the underlying raw
582
 
stream, unless the latter is interactive.</p>
583
 
<p>A <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> is raised if the underlying raw stream is in non
584
 
blocking-mode, and has no data available at the moment.</p>
585
 
</dd></dl>
586
 
 
587
 
<dl class="method">
588
 
<dt id="io.BufferedIOBase.readinto1">
589
 
<code class="descname">readinto1</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.readinto1" title="Permalink to this definition">¶</a></dt>
590
 
<dd><p>Read up to <code class="docutils literal"><span class="pre">len(b)</span></code> bytes into bytearray <em>b</em>, using at most one call to
591
 
the underlying raw stream&#8217;s <a class="reference internal" href="#io.RawIOBase.read" title="io.RawIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a> (or
592
 
<a class="reference internal" href="#io.RawIOBase.readinto" title="io.RawIOBase.readinto"><code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code></a>) method. Return the number of bytes read.</p>
593
 
<p>A <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> is raised if the underlying raw stream is in non
594
 
blocking-mode, and has no data available at the moment.</p>
595
 
<div class="versionadded">
596
 
<p><span class="versionmodified">New in version 3.5.</span></p>
597
 
</div>
598
 
</dd></dl>
599
 
 
600
 
<dl class="method">
601
 
<dt id="io.BufferedIOBase.write">
602
 
<code class="descname">write</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedIOBase.write" title="Permalink to this definition">¶</a></dt>
603
 
<dd><p>Write the given <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> or <a class="reference internal" href="functions.html#bytearray" title="bytearray"><code class="xref py py-class docutils literal"><span class="pre">bytearray</span></code></a> object, <em>b</em> and
604
 
return the number of bytes written (never less than <code class="docutils literal"><span class="pre">len(b)</span></code>, since if
605
 
the write fails an <a class="reference internal" href="exceptions.html#OSError" title="OSError"><code class="xref py py-exc docutils literal"><span class="pre">OSError</span></code></a> will be raised).  Depending on the
606
 
actual implementation, these bytes may be readily written to the
607
 
underlying stream, or held in a buffer for performance and latency
608
 
reasons.</p>
609
 
<p>When in non-blocking mode, a <a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> is raised if the
610
 
data needed to be written to the raw stream but it couldn&#8217;t accept
611
 
all the data without blocking.</p>
612
 
</dd></dl>
613
 
 
614
 
</dd></dl>
615
 
 
616
 
</div>
617
 
<div class="section" id="raw-file-i-o">
618
 
<h3>16.2.3.2. Raw File I/O<a class="headerlink" href="#raw-file-i-o" title="Permalink to this headline">¶</a></h3>
619
 
<dl class="class">
620
 
<dt id="io.FileIO">
621
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">FileIO</code><span class="sig-paren">(</span><em>name</em>, <em>mode='r'</em>, <em>closefd=True</em>, <em>opener=None</em><span class="sig-paren">)</span><a class="headerlink" href="#io.FileIO" title="Permalink to this definition">¶</a></dt>
622
 
<dd><p><a class="reference internal" href="#io.FileIO" title="io.FileIO"><code class="xref py py-class docutils literal"><span class="pre">FileIO</span></code></a> represents an OS-level file containing bytes data.
623
 
It implements the <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> interface (and therefore the
624
 
<a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> interface, too).</p>
625
 
<p>The <em>name</em> can be one of two things:</p>
626
 
<ul class="simple">
627
 
<li>a character string or <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> object representing the path to the
628
 
file which will be opened. In this case closefd must be True (the default)
629
 
otherwise an error will be raised.</li>
630
 
<li>an integer representing the number of an existing OS-level file descriptor
631
 
to which the resulting <a class="reference internal" href="#io.FileIO" title="io.FileIO"><code class="xref py py-class docutils literal"><span class="pre">FileIO</span></code></a> object will give access. When the
632
 
FileIO object is closed this fd will be closed as well, unless <em>closefd</em>
633
 
is set to <code class="docutils literal"><span class="pre">False</span></code>.</li>
634
 
</ul>
635
 
<p>The <em>mode</em> can be <code class="docutils literal"><span class="pre">'r'</span></code>, <code class="docutils literal"><span class="pre">'w'</span></code>, <code class="docutils literal"><span class="pre">'x'</span></code> or <code class="docutils literal"><span class="pre">'a'</span></code> for reading
636
 
(default), writing, exclusive creation or appending. The file will be
637
 
created if it doesn&#8217;t exist when opened for writing or appending; it will be
638
 
truncated when opened for writing. <a class="reference internal" href="exceptions.html#FileExistsError" title="FileExistsError"><code class="xref py py-exc docutils literal"><span class="pre">FileExistsError</span></code></a> will be raised if
639
 
it already exists when opened for creating. Opening a file for creating
640
 
implies writing, so this mode behaves in a similar way to <code class="docutils literal"><span class="pre">'w'</span></code>. Add a
641
 
<code class="docutils literal"><span class="pre">'+'</span></code> to the mode to allow simultaneous reading and writing.</p>
642
 
<p>The <code class="xref py py-meth docutils literal"><span class="pre">read()</span></code> (when called with a positive argument), <code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code>
643
 
and <code class="xref py py-meth docutils literal"><span class="pre">write()</span></code> methods on this class will only make one system call.</p>
644
 
<p>A custom opener can be used by passing a callable as <em>opener</em>. The underlying
645
 
file descriptor for the file object is then obtained by calling <em>opener</em> with
646
 
(<em>name</em>, <em>flags</em>). <em>opener</em> must return an open file descriptor (passing
647
 
<a class="reference internal" href="os.html#os.open" title="os.open"><code class="xref py py-mod docutils literal"><span class="pre">os.open</span></code></a> as <em>opener</em> results in functionality similar to passing
648
 
<code class="docutils literal"><span class="pre">None</span></code>).</p>
649
 
<p>The newly created file is <a class="reference internal" href="os.html#fd-inheritance"><span>non-inheritable</span></a>.</p>
650
 
<p>See the <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> built-in function for examples on using the <em>opener</em>
651
 
parameter.</p>
652
 
<div class="versionchanged">
653
 
<p><span class="versionmodified">Changed in version 3.3: </span>The <em>opener</em> parameter was added.
654
 
The <code class="docutils literal"><span class="pre">'x'</span></code> mode was added.</p>
655
 
</div>
656
 
<div class="versionchanged">
657
 
<p><span class="versionmodified">Changed in version 3.4: </span>The file is now non-inheritable.</p>
658
 
</div>
659
 
<p>In addition to the attributes and methods from <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a> and
660
 
<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>, <a class="reference internal" href="#io.FileIO" title="io.FileIO"><code class="xref py py-class docutils literal"><span class="pre">FileIO</span></code></a> provides the following data
661
 
attributes:</p>
662
 
<dl class="attribute">
663
 
<dt id="io.FileIO.mode">
664
 
<code class="descname">mode</code><a class="headerlink" href="#io.FileIO.mode" title="Permalink to this definition">¶</a></dt>
665
 
<dd><p>The mode as given in the constructor.</p>
666
 
</dd></dl>
667
 
 
668
 
<dl class="attribute">
669
 
<dt id="io.FileIO.name">
670
 
<code class="descname">name</code><a class="headerlink" href="#io.FileIO.name" title="Permalink to this definition">¶</a></dt>
671
 
<dd><p>The file name.  This is the file descriptor of the file when no name is
672
 
given in the constructor.</p>
673
 
</dd></dl>
674
 
 
675
 
</dd></dl>
676
 
 
677
 
</div>
678
 
<div class="section" id="buffered-streams">
679
 
<h3>16.2.3.3. Buffered Streams<a class="headerlink" href="#buffered-streams" title="Permalink to this headline">¶</a></h3>
680
 
<p>Buffered I/O streams provide a higher-level interface to an I/O device
681
 
than raw I/O does.</p>
682
 
<dl class="class">
683
 
<dt id="io.BytesIO">
684
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BytesIO</code><span class="sig-paren">(</span><span class="optional">[</span><em>initial_bytes</em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BytesIO" title="Permalink to this definition">¶</a></dt>
685
 
<dd><p>A stream implementation using an in-memory bytes buffer.  It inherits
686
 
<a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>.  The buffer is discarded when the
687
 
<a class="reference internal" href="#io.IOBase.close" title="io.IOBase.close"><code class="xref py py-meth docutils literal"><span class="pre">close()</span></code></a> method is called.</p>
688
 
<p>The argument <em>initial_bytes</em> contains optional initial <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> data.</p>
689
 
<p><a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a> provides or overrides these methods in addition to those
690
 
from <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> and <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>:</p>
691
 
<dl class="method">
692
 
<dt id="io.BytesIO.getbuffer">
693
 
<code class="descname">getbuffer</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BytesIO.getbuffer" title="Permalink to this definition">¶</a></dt>
694
 
<dd><p>Return a readable and writable view over the contents of the buffer
695
 
without copying them.  Also, mutating the view will transparently
696
 
update the contents of the buffer:</p>
697
 
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="n">b</span> <span class="o">=</span> <span class="n">io</span><span class="o">.</span><span class="n">BytesIO</span><span class="p">(</span><span class="n">b</span><span class="s2">&quot;abcdef&quot;</span><span class="p">)</span>
698
 
<span class="gp">&gt;&gt;&gt; </span><span class="n">view</span> <span class="o">=</span> <span class="n">b</span><span class="o">.</span><span class="n">getbuffer</span><span class="p">()</span>
699
 
<span class="gp">&gt;&gt;&gt; </span><span class="n">view</span><span class="p">[</span><span class="mi">2</span><span class="p">:</span><span class="mi">4</span><span class="p">]</span> <span class="o">=</span> <span class="n">b</span><span class="s2">&quot;56&quot;</span>
700
 
<span class="gp">&gt;&gt;&gt; </span><span class="n">b</span><span class="o">.</span><span class="n">getvalue</span><span class="p">()</span>
701
 
<span class="go">b&#39;ab56ef&#39;</span>
702
 
</pre></div>
703
 
</div>
704
 
<div class="admonition note">
705
 
<p class="first admonition-title">Note</p>
706
 
<p class="last">As long as the view exists, the <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a> object cannot be
707
 
resized or closed.</p>
708
 
</div>
709
 
<div class="versionadded">
710
 
<p><span class="versionmodified">New in version 3.2.</span></p>
711
 
</div>
712
 
</dd></dl>
713
 
 
714
 
<dl class="method">
715
 
<dt id="io.BytesIO.getvalue">
716
 
<code class="descname">getvalue</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BytesIO.getvalue" title="Permalink to this definition">¶</a></dt>
717
 
<dd><p>Return <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> containing the entire contents of the buffer.</p>
718
 
</dd></dl>
719
 
 
720
 
<dl class="method">
721
 
<dt id="io.BytesIO.read1">
722
 
<code class="descname">read1</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BytesIO.read1" title="Permalink to this definition">¶</a></dt>
723
 
<dd><p>In <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a>, this is the same as <code class="xref py py-meth docutils literal"><span class="pre">read()</span></code>.</p>
724
 
</dd></dl>
725
 
 
726
 
<dl class="method">
727
 
<dt id="io.BytesIO.readinto1">
728
 
<code class="descname">readinto1</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BytesIO.readinto1" title="Permalink to this definition">¶</a></dt>
729
 
<dd><p>In <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a>, this is the same as <code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code>.</p>
730
 
<div class="versionadded">
731
 
<p><span class="versionmodified">New in version 3.5.</span></p>
732
 
</div>
733
 
</dd></dl>
734
 
 
735
 
</dd></dl>
736
 
 
737
 
<dl class="class">
738
 
<dt id="io.BufferedReader">
739
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BufferedReader</code><span class="sig-paren">(</span><em>raw</em>, <em>buffer_size=DEFAULT_BUFFER_SIZE</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedReader" title="Permalink to this definition">¶</a></dt>
740
 
<dd><p>A buffer providing higher-level access to a readable, sequential
741
 
<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> object.  It inherits <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>.
742
 
When reading data from this object, a larger amount of data may be
743
 
requested from the underlying raw stream, and kept in an internal buffer.
744
 
The buffered data can then be returned directly on subsequent reads.</p>
745
 
<p>The constructor creates a <a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a> for the given readable
746
 
<em>raw</em> stream and <em>buffer_size</em>.  If <em>buffer_size</em> is omitted,
747
 
<a class="reference internal" href="#io.DEFAULT_BUFFER_SIZE" title="io.DEFAULT_BUFFER_SIZE"><code class="xref py py-data docutils literal"><span class="pre">DEFAULT_BUFFER_SIZE</span></code></a> is used.</p>
748
 
<p><a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a> provides or overrides these methods in addition to
749
 
those from <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> and <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>:</p>
750
 
<dl class="method">
751
 
<dt id="io.BufferedReader.peek">
752
 
<code class="descname">peek</code><span class="sig-paren">(</span><span class="optional">[</span><em>size</em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedReader.peek" title="Permalink to this definition">¶</a></dt>
753
 
<dd><p>Return bytes from the stream without advancing the position.  At most one
754
 
single read on the raw stream is done to satisfy the call. The number of
755
 
bytes returned may be less or more than requested.</p>
756
 
</dd></dl>
757
 
 
758
 
<dl class="method">
759
 
<dt id="io.BufferedReader.read">
760
 
<code class="descname">read</code><span class="sig-paren">(</span><span class="optional">[</span><em>size</em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedReader.read" title="Permalink to this definition">¶</a></dt>
761
 
<dd><p>Read and return <em>size</em> bytes, or if <em>size</em> is not given or negative, until
762
 
EOF or if the read call would block in non-blocking mode.</p>
763
 
</dd></dl>
764
 
 
765
 
<dl class="method">
766
 
<dt id="io.BufferedReader.read1">
767
 
<code class="descname">read1</code><span class="sig-paren">(</span><em>size</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedReader.read1" title="Permalink to this definition">¶</a></dt>
768
 
<dd><p>Read and return up to <em>size</em> bytes with only one call on the raw stream.
769
 
If at least one byte is buffered, only buffered bytes are returned.
770
 
Otherwise, one raw stream read call is made.</p>
771
 
</dd></dl>
772
 
 
773
 
</dd></dl>
774
 
 
775
 
<dl class="class">
776
 
<dt id="io.BufferedWriter">
777
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BufferedWriter</code><span class="sig-paren">(</span><em>raw</em>, <em>buffer_size=DEFAULT_BUFFER_SIZE</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedWriter" title="Permalink to this definition">¶</a></dt>
778
 
<dd><p>A buffer providing higher-level access to a writeable, sequential
779
 
<a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> object.  It inherits <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>.
780
 
When writing to this object, data is normally placed into an internal
781
 
buffer.  The buffer will be written out to the underlying <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>
782
 
object under various conditions, including:</p>
783
 
<ul class="simple">
784
 
<li>when the buffer gets too small for all pending data;</li>
785
 
<li>when <a class="reference internal" href="#io.BufferedWriter.flush" title="io.BufferedWriter.flush"><code class="xref py py-meth docutils literal"><span class="pre">flush()</span></code></a> is called;</li>
786
 
<li>when a <code class="xref py py-meth docutils literal"><span class="pre">seek()</span></code> is requested (for <a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a> objects);</li>
787
 
<li>when the <a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a> object is closed or destroyed.</li>
788
 
</ul>
789
 
<p>The constructor creates a <a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a> for the given writeable
790
 
<em>raw</em> stream.  If the <em>buffer_size</em> is not given, it defaults to
791
 
<a class="reference internal" href="#io.DEFAULT_BUFFER_SIZE" title="io.DEFAULT_BUFFER_SIZE"><code class="xref py py-data docutils literal"><span class="pre">DEFAULT_BUFFER_SIZE</span></code></a>.</p>
792
 
<p><a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a> provides or overrides these methods in addition to
793
 
those from <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> and <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>:</p>
794
 
<dl class="method">
795
 
<dt id="io.BufferedWriter.flush">
796
 
<code class="descname">flush</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedWriter.flush" title="Permalink to this definition">¶</a></dt>
797
 
<dd><p>Force bytes held in the buffer into the raw stream.  A
798
 
<a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> should be raised if the raw stream blocks.</p>
799
 
</dd></dl>
800
 
 
801
 
<dl class="method">
802
 
<dt id="io.BufferedWriter.write">
803
 
<code class="descname">write</code><span class="sig-paren">(</span><em>b</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedWriter.write" title="Permalink to this definition">¶</a></dt>
804
 
<dd><p>Write the <a class="reference internal" href="functions.html#bytes" title="bytes"><code class="xref py py-class docutils literal"><span class="pre">bytes</span></code></a> or <a class="reference internal" href="functions.html#bytearray" title="bytearray"><code class="xref py py-class docutils literal"><span class="pre">bytearray</span></code></a> object, <em>b</em> and return the
805
 
number of bytes written.  When in non-blocking mode, a
806
 
<a class="reference internal" href="exceptions.html#BlockingIOError" title="BlockingIOError"><code class="xref py py-exc docutils literal"><span class="pre">BlockingIOError</span></code></a> is raised if the buffer needs to be written out but
807
 
the raw stream blocks.</p>
808
 
</dd></dl>
809
 
 
810
 
</dd></dl>
811
 
 
812
 
<dl class="class">
813
 
<dt id="io.BufferedRandom">
814
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BufferedRandom</code><span class="sig-paren">(</span><em>raw</em>, <em>buffer_size=DEFAULT_BUFFER_SIZE</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedRandom" title="Permalink to this definition">¶</a></dt>
815
 
<dd><p>A buffered interface to random access streams.  It inherits
816
 
<a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a> and <a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a>, and further supports
817
 
<code class="xref py py-meth docutils literal"><span class="pre">seek()</span></code> and <code class="xref py py-meth docutils literal"><span class="pre">tell()</span></code> functionality.</p>
818
 
<p>The constructor creates a reader and writer for a seekable raw stream, given
819
 
in the first argument.  If the <em>buffer_size</em> is omitted it defaults to
820
 
<a class="reference internal" href="#io.DEFAULT_BUFFER_SIZE" title="io.DEFAULT_BUFFER_SIZE"><code class="xref py py-data docutils literal"><span class="pre">DEFAULT_BUFFER_SIZE</span></code></a>.</p>
821
 
<p><a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a> is capable of anything <a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a> or
822
 
<a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a> can do.</p>
823
 
</dd></dl>
824
 
 
825
 
<dl class="class">
826
 
<dt id="io.BufferedRWPair">
827
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">BufferedRWPair</code><span class="sig-paren">(</span><em>reader</em>, <em>writer</em>, <em>buffer_size=DEFAULT_BUFFER_SIZE</em><span class="sig-paren">)</span><a class="headerlink" href="#io.BufferedRWPair" title="Permalink to this definition">¶</a></dt>
828
 
<dd><p>A buffered I/O object combining two unidirectional <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a>
829
 
objects &#8211; one readable, the other writeable &#8211; into a single bidirectional
830
 
endpoint.  It inherits <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>.</p>
831
 
<p><em>reader</em> and <em>writer</em> are <a class="reference internal" href="#io.RawIOBase" title="io.RawIOBase"><code class="xref py py-class docutils literal"><span class="pre">RawIOBase</span></code></a> objects that are readable and
832
 
writeable respectively.  If the <em>buffer_size</em> is omitted it defaults to
833
 
<a class="reference internal" href="#io.DEFAULT_BUFFER_SIZE" title="io.DEFAULT_BUFFER_SIZE"><code class="xref py py-data docutils literal"><span class="pre">DEFAULT_BUFFER_SIZE</span></code></a>.</p>
834
 
<p><a class="reference internal" href="#io.BufferedRWPair" title="io.BufferedRWPair"><code class="xref py py-class docutils literal"><span class="pre">BufferedRWPair</span></code></a> implements all of <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a>&#8216;s methods
835
 
except for <a class="reference internal" href="#io.BufferedIOBase.detach" title="io.BufferedIOBase.detach"><code class="xref py py-meth docutils literal"><span class="pre">detach()</span></code></a>, which raises
836
 
<a class="reference internal" href="#io.UnsupportedOperation" title="io.UnsupportedOperation"><code class="xref py py-exc docutils literal"><span class="pre">UnsupportedOperation</span></code></a>.</p>
837
 
<div class="admonition warning">
838
 
<p class="first admonition-title">Warning</p>
839
 
<p class="last"><a class="reference internal" href="#io.BufferedRWPair" title="io.BufferedRWPair"><code class="xref py py-class docutils literal"><span class="pre">BufferedRWPair</span></code></a> does not attempt to synchronize accesses to
840
 
its underlying raw streams.  You should not pass it the same object
841
 
as reader and writer; use <a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a> instead.</p>
842
 
</div>
843
 
</dd></dl>
844
 
 
845
 
</div>
846
 
<div class="section" id="id1">
847
 
<h3>16.2.3.4. Text I/O<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
848
 
<dl class="class">
849
 
<dt id="io.TextIOBase">
850
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">TextIOBase</code><a class="headerlink" href="#io.TextIOBase" title="Permalink to this definition">¶</a></dt>
851
 
<dd><p>Base class for text streams.  This class provides a character and line based
852
 
interface to stream I/O.  There is no <code class="xref py py-meth docutils literal"><span class="pre">readinto()</span></code> method because
853
 
Python&#8217;s character strings are immutable.  It inherits <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>.
854
 
There is no public constructor.</p>
855
 
<p><a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> provides or overrides these data attributes and
856
 
methods in addition to those from <a class="reference internal" href="#io.IOBase" title="io.IOBase"><code class="xref py py-class docutils literal"><span class="pre">IOBase</span></code></a>:</p>
857
 
<dl class="attribute">
858
 
<dt id="io.TextIOBase.encoding">
859
 
<code class="descname">encoding</code><a class="headerlink" href="#io.TextIOBase.encoding" title="Permalink to this definition">¶</a></dt>
860
 
<dd><p>The name of the encoding used to decode the stream&#8217;s bytes into
861
 
strings, and to encode strings into bytes.</p>
862
 
</dd></dl>
863
 
 
864
 
<dl class="attribute">
865
 
<dt id="io.TextIOBase.errors">
866
 
<code class="descname">errors</code><a class="headerlink" href="#io.TextIOBase.errors" title="Permalink to this definition">¶</a></dt>
867
 
<dd><p>The error setting of the decoder or encoder.</p>
868
 
</dd></dl>
869
 
 
870
 
<dl class="attribute">
871
 
<dt id="io.TextIOBase.newlines">
872
 
<code class="descname">newlines</code><a class="headerlink" href="#io.TextIOBase.newlines" title="Permalink to this definition">¶</a></dt>
873
 
<dd><p>A string, a tuple of strings, or <code class="docutils literal"><span class="pre">None</span></code>, indicating the newlines
874
 
translated so far.  Depending on the implementation and the initial
875
 
constructor flags, this may not be available.</p>
876
 
</dd></dl>
877
 
 
878
 
<dl class="attribute">
879
 
<dt id="io.TextIOBase.buffer">
880
 
<code class="descname">buffer</code><a class="headerlink" href="#io.TextIOBase.buffer" title="Permalink to this definition">¶</a></dt>
881
 
<dd><p>The underlying binary buffer (a <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> instance) that
882
 
<a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> deals with.  This is not part of the
883
 
<a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> API and may not exist in some implementations.</p>
884
 
</dd></dl>
885
 
 
886
 
<dl class="method">
887
 
<dt id="io.TextIOBase.detach">
888
 
<code class="descname">detach</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.detach" title="Permalink to this definition">¶</a></dt>
889
 
<dd><p>Separate the underlying binary buffer from the <a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> and
890
 
return it.</p>
891
 
<p>After the underlying buffer has been detached, the <a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> is
892
 
in an unusable state.</p>
893
 
<p>Some <a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> implementations, like <a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a>, may not
894
 
have the concept of an underlying buffer and calling this method will
895
 
raise <a class="reference internal" href="#io.UnsupportedOperation" title="io.UnsupportedOperation"><code class="xref py py-exc docutils literal"><span class="pre">UnsupportedOperation</span></code></a>.</p>
896
 
<div class="versionadded">
897
 
<p><span class="versionmodified">New in version 3.1.</span></p>
898
 
</div>
899
 
</dd></dl>
900
 
 
901
 
<dl class="method">
902
 
<dt id="io.TextIOBase.read">
903
 
<code class="descname">read</code><span class="sig-paren">(</span><em>size</em><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.read" title="Permalink to this definition">¶</a></dt>
904
 
<dd><p>Read and return at most <em>size</em> characters from the stream as a single
905
 
<a class="reference internal" href="stdtypes.html#str" title="str"><code class="xref py py-class docutils literal"><span class="pre">str</span></code></a>.  If <em>size</em> is negative or <code class="docutils literal"><span class="pre">None</span></code>, reads until EOF.</p>
906
 
</dd></dl>
907
 
 
908
 
<dl class="method">
909
 
<dt id="io.TextIOBase.readline">
910
 
<code class="descname">readline</code><span class="sig-paren">(</span><em>size=-1</em><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.readline" title="Permalink to this definition">¶</a></dt>
911
 
<dd><p>Read until newline or EOF and return a single <code class="docutils literal"><span class="pre">str</span></code>.  If the stream is
912
 
already at EOF, an empty string is returned.</p>
913
 
<p>If <em>size</em> is specified, at most <em>size</em> characters will be read.</p>
914
 
</dd></dl>
915
 
 
916
 
<dl class="method">
917
 
<dt id="io.TextIOBase.seek">
918
 
<code class="descname">seek</code><span class="sig-paren">(</span><em>offset</em><span class="optional">[</span>, <em>whence</em><span class="optional">]</span><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.seek" title="Permalink to this definition">¶</a></dt>
919
 
<dd><p>Change the stream position to the given <em>offset</em>.  Behaviour depends on
920
 
the <em>whence</em> parameter.  The default value for <em>whence</em> is
921
 
<code class="xref py py-data docutils literal"><span class="pre">SEEK_SET</span></code>.</p>
922
 
<ul class="simple">
923
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_SET</span></code> or <code class="docutils literal"><span class="pre">0</span></code>: seek from the start of the stream
924
 
(the default); <em>offset</em> must either be a number returned by
925
 
<a class="reference internal" href="#io.TextIOBase.tell" title="io.TextIOBase.tell"><code class="xref py py-meth docutils literal"><span class="pre">TextIOBase.tell()</span></code></a>, or zero.  Any other <em>offset</em> value
926
 
produces undefined behaviour.</li>
927
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_CUR</span></code> or <code class="docutils literal"><span class="pre">1</span></code>: &#8220;seek&#8221; to the current position;
928
 
<em>offset</em> must be zero, which is a no-operation (all other values
929
 
are unsupported).</li>
930
 
<li><code class="xref py py-data docutils literal"><span class="pre">SEEK_END</span></code> or <code class="docutils literal"><span class="pre">2</span></code>: seek to the end of the stream;
931
 
<em>offset</em> must be zero (all other values are unsupported).</li>
932
 
</ul>
933
 
<p>Return the new absolute position as an opaque number.</p>
934
 
<div class="versionadded">
935
 
<p><span class="versionmodified">New in version 3.1: </span>The <code class="docutils literal"><span class="pre">SEEK_*</span></code> constants.</p>
936
 
</div>
937
 
</dd></dl>
938
 
 
939
 
<dl class="method">
940
 
<dt id="io.TextIOBase.tell">
941
 
<code class="descname">tell</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.tell" title="Permalink to this definition">¶</a></dt>
942
 
<dd><p>Return the current stream position as an opaque number.  The number
943
 
does not usually represent a number of bytes in the underlying
944
 
binary storage.</p>
945
 
</dd></dl>
946
 
 
947
 
<dl class="method">
948
 
<dt id="io.TextIOBase.write">
949
 
<code class="descname">write</code><span class="sig-paren">(</span><em>s</em><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOBase.write" title="Permalink to this definition">¶</a></dt>
950
 
<dd><p>Write the string <em>s</em> to the stream and return the number of characters
951
 
written.</p>
952
 
</dd></dl>
953
 
 
954
 
</dd></dl>
955
 
 
956
 
<dl class="class">
957
 
<dt id="io.TextIOWrapper">
958
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">TextIOWrapper</code><span class="sig-paren">(</span><em>buffer</em>, <em>encoding=None</em>, <em>errors=None</em>, <em>newline=None</em>, <em>line_buffering=False</em>, <em>write_through=False</em><span class="sig-paren">)</span><a class="headerlink" href="#io.TextIOWrapper" title="Permalink to this definition">¶</a></dt>
959
 
<dd><p>A buffered text stream over a <a class="reference internal" href="#io.BufferedIOBase" title="io.BufferedIOBase"><code class="xref py py-class docutils literal"><span class="pre">BufferedIOBase</span></code></a> binary stream.
960
 
It inherits <a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a>.</p>
961
 
<p><em>encoding</em> gives the name of the encoding that the stream will be decoded or
962
 
encoded with.  It defaults to
963
 
<a class="reference internal" href="locale.html#locale.getpreferredencoding" title="locale.getpreferredencoding"><code class="xref py py-func docutils literal"><span class="pre">locale.getpreferredencoding(False)</span></code></a>.</p>
964
 
<p><em>errors</em> is an optional string that specifies how encoding and decoding
965
 
errors are to be handled.  Pass <code class="docutils literal"><span class="pre">'strict'</span></code> to raise a <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><code class="xref py py-exc docutils literal"><span class="pre">ValueError</span></code></a>
966
 
exception if there is an encoding error (the default of <code class="docutils literal"><span class="pre">None</span></code> has the same
967
 
effect), or pass <code class="docutils literal"><span class="pre">'ignore'</span></code> to ignore errors.  (Note that ignoring encoding
968
 
errors can lead to data loss.)  <code class="docutils literal"><span class="pre">'replace'</span></code> causes a replacement marker
969
 
(such as <code class="docutils literal"><span class="pre">'?'</span></code>) to be inserted where there is malformed data.
970
 
<code class="docutils literal"><span class="pre">'backslashreplace'</span></code> causes malformed data to be replaced by a
971
 
backslashed escape sequence.  When writing, <code class="docutils literal"><span class="pre">'xmlcharrefreplace'</span></code>
972
 
(replace with the appropriate XML character reference)  or <code class="docutils literal"><span class="pre">'namereplace'</span></code>
973
 
(replace with <code class="docutils literal"><span class="pre">\N{...}</span></code> escape sequences) can be used.  Any other error
974
 
handling name that has been registered with
975
 
<a class="reference internal" href="codecs.html#codecs.register_error" title="codecs.register_error"><code class="xref py py-func docutils literal"><span class="pre">codecs.register_error()</span></code></a> is also valid.</p>
976
 
<p id="index-1"><em>newline</em> controls how line endings are handled.  It can be <code class="docutils literal"><span class="pre">None</span></code>,
977
 
<code class="docutils literal"><span class="pre">''</span></code>, <code class="docutils literal"><span class="pre">'\n'</span></code>, <code class="docutils literal"><span class="pre">'\r'</span></code>, and <code class="docutils literal"><span class="pre">'\r\n'</span></code>.  It works as follows:</p>
978
 
<ul class="simple">
979
 
<li>When reading input from the stream, if <em>newline</em> is <code class="docutils literal"><span class="pre">None</span></code>,
980
 
<a class="reference internal" href="../glossary.html#term-universal-newlines"><span class="xref std std-term">universal newlines</span></a> mode is enabled.  Lines in the input can end in
981
 
<code class="docutils literal"><span class="pre">'\n'</span></code>, <code class="docutils literal"><span class="pre">'\r'</span></code>, or <code class="docutils literal"><span class="pre">'\r\n'</span></code>, and these are translated into <code class="docutils literal"><span class="pre">'\n'</span></code>
982
 
before being returned to the caller.  If it is <code class="docutils literal"><span class="pre">''</span></code>, universal newlines
983
 
mode is enabled, but line endings are returned to the caller untranslated.
984
 
If it has any of the other legal values, input lines are only terminated
985
 
by the given string, and the line ending is returned to the caller
986
 
untranslated.</li>
987
 
<li>When writing output to the stream, if <em>newline</em> is <code class="docutils literal"><span class="pre">None</span></code>, any <code class="docutils literal"><span class="pre">'\n'</span></code>
988
 
characters written are translated to the system default line separator,
989
 
<a class="reference internal" href="os.html#os.linesep" title="os.linesep"><code class="xref py py-data docutils literal"><span class="pre">os.linesep</span></code></a>.  If <em>newline</em> is <code class="docutils literal"><span class="pre">''</span></code> or <code class="docutils literal"><span class="pre">'\n'</span></code>, no translation
990
 
takes place.  If <em>newline</em> is any of the other legal values, any <code class="docutils literal"><span class="pre">'\n'</span></code>
991
 
characters written are translated to the given string.</li>
992
 
</ul>
993
 
<p>If <em>line_buffering</em> is <code class="docutils literal"><span class="pre">True</span></code>, <code class="xref py py-meth docutils literal"><span class="pre">flush()</span></code> is implied when a call to
994
 
write contains a newline character.</p>
995
 
<p>If <em>write_through</em> is <code class="docutils literal"><span class="pre">True</span></code>, calls to <code class="xref py py-meth docutils literal"><span class="pre">write()</span></code> are guaranteed
996
 
not to be buffered: any data written on the <a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a>
997
 
object is immediately handled to its underlying binary <em>buffer</em>.</p>
998
 
<div class="versionchanged">
999
 
<p><span class="versionmodified">Changed in version 3.3: </span>The <em>write_through</em> argument has been added.</p>
1000
 
</div>
1001
 
<div class="versionchanged">
1002
 
<p><span class="versionmodified">Changed in version 3.3: </span>The default <em>encoding</em> is now <code class="docutils literal"><span class="pre">locale.getpreferredencoding(False)</span></code>
1003
 
instead of <code class="docutils literal"><span class="pre">locale.getpreferredencoding()</span></code>. Don&#8217;t change temporary the
1004
 
locale encoding using <a class="reference internal" href="locale.html#locale.setlocale" title="locale.setlocale"><code class="xref py py-func docutils literal"><span class="pre">locale.setlocale()</span></code></a>, use the current locale
1005
 
encoding instead of the user preferred encoding.</p>
1006
 
</div>
1007
 
<p><a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a> provides one attribute in addition to those of
1008
 
<a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> and its parents:</p>
1009
 
<dl class="attribute">
1010
 
<dt id="io.TextIOWrapper.line_buffering">
1011
 
<code class="descname">line_buffering</code><a class="headerlink" href="#io.TextIOWrapper.line_buffering" title="Permalink to this definition">¶</a></dt>
1012
 
<dd><p>Whether line buffering is enabled.</p>
1013
 
</dd></dl>
1014
 
 
1015
 
</dd></dl>
1016
 
 
1017
 
<dl class="class">
1018
 
<dt id="io.StringIO">
1019
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">StringIO</code><span class="sig-paren">(</span><em>initial_value=''</em>, <em>newline='\n'</em><span class="sig-paren">)</span><a class="headerlink" href="#io.StringIO" title="Permalink to this definition">¶</a></dt>
1020
 
<dd><p>An in-memory stream for text I/O.  The text buffer is discarded when the
1021
 
<a class="reference internal" href="#io.IOBase.close" title="io.IOBase.close"><code class="xref py py-meth docutils literal"><span class="pre">close()</span></code></a> method is called.</p>
1022
 
<p>The initial value of the buffer can be set by providing <em>initial_value</em>.
1023
 
If newline translation is enabled, newlines will be encoded as if by
1024
 
<a class="reference internal" href="#io.TextIOBase.write" title="io.TextIOBase.write"><code class="xref py py-meth docutils literal"><span class="pre">write()</span></code></a>.  The stream is positioned at the start of
1025
 
the buffer.</p>
1026
 
<p>The <em>newline</em> argument works like that of <a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a>.
1027
 
The default is to consider only <code class="docutils literal"><span class="pre">\n</span></code> characters as ends of lines and
1028
 
to do no newline translation.  If <em>newline</em> is set to <code class="docutils literal"><span class="pre">None</span></code>,
1029
 
newlines are written as <code class="docutils literal"><span class="pre">\n</span></code> on all platforms, but universal
1030
 
newline decoding is still performed when reading.</p>
1031
 
<p><a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a> provides this method in addition to those from
1032
 
<a class="reference internal" href="#io.TextIOBase" title="io.TextIOBase"><code class="xref py py-class docutils literal"><span class="pre">TextIOBase</span></code></a> and its parents:</p>
1033
 
<dl class="method">
1034
 
<dt id="io.StringIO.getvalue">
1035
 
<code class="descname">getvalue</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#io.StringIO.getvalue" title="Permalink to this definition">¶</a></dt>
1036
 
<dd><p>Return a <code class="docutils literal"><span class="pre">str</span></code> containing the entire contents of the buffer.
1037
 
Newlines are decoded as if by <a class="reference internal" href="#io.TextIOBase.read" title="io.TextIOBase.read"><code class="xref py py-meth docutils literal"><span class="pre">read()</span></code></a>, although
1038
 
the stream position is not changed.</p>
1039
 
</dd></dl>
1040
 
 
1041
 
<p>Example usage:</p>
1042
 
<div class="highlight-python3"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">io</span>
1043
 
 
1044
 
<span class="n">output</span> <span class="o">=</span> <span class="n">io</span><span class="o">.</span><span class="n">StringIO</span><span class="p">()</span>
1045
 
<span class="n">output</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s1">&#39;First line.</span><span class="se">\n</span><span class="s1">&#39;</span><span class="p">)</span>
1046
 
<span class="nb">print</span><span class="p">(</span><span class="s1">&#39;Second line.&#39;</span><span class="p">,</span> <span class="n">file</span><span class="o">=</span><span class="n">output</span><span class="p">)</span>
1047
 
 
1048
 
<span class="c1"># Retrieve file contents -- this will be</span>
1049
 
<span class="c1"># &#39;First line.\nSecond line.\n&#39;</span>
1050
 
<span class="n">contents</span> <span class="o">=</span> <span class="n">output</span><span class="o">.</span><span class="n">getvalue</span><span class="p">()</span>
1051
 
 
1052
 
<span class="c1"># Close object and discard memory buffer --</span>
1053
 
<span class="c1"># .getvalue() will now raise an exception.</span>
1054
 
<span class="n">output</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
1055
 
</pre></div>
1056
 
</div>
1057
 
</dd></dl>
1058
 
 
1059
 
<span class="target" id="index-2"></span><dl class="class">
1060
 
<dt id="io.IncrementalNewlineDecoder">
1061
 
<em class="property">class </em><code class="descclassname">io.</code><code class="descname">IncrementalNewlineDecoder</code><a class="headerlink" href="#io.IncrementalNewlineDecoder" title="Permalink to this definition">¶</a></dt>
1062
 
<dd><p>A helper codec that decodes newlines for <a class="reference internal" href="../glossary.html#term-universal-newlines"><span class="xref std std-term">universal newlines</span></a> mode.
1063
 
It inherits <a class="reference internal" href="codecs.html#codecs.IncrementalDecoder" title="codecs.IncrementalDecoder"><code class="xref py py-class docutils literal"><span class="pre">codecs.IncrementalDecoder</span></code></a>.</p>
1064
 
</dd></dl>
1065
 
 
1066
 
</div>
1067
 
</div>
1068
 
<div class="section" id="performance">
1069
 
<h2>16.2.4. Performance<a class="headerlink" href="#performance" title="Permalink to this headline">¶</a></h2>
1070
 
<p>This section discusses the performance of the provided concrete I/O
1071
 
implementations.</p>
1072
 
<div class="section" id="id2">
1073
 
<h3>16.2.4.1. Binary I/O<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
1074
 
<p>By reading and writing only large chunks of data even when the user asks for a
1075
 
single byte, buffered I/O hides any inefficiency in calling and executing the
1076
 
operating system&#8217;s unbuffered I/O routines.  The gain depends on the OS and the
1077
 
kind of I/O which is performed.  For example, on some modern OSes such as Linux,
1078
 
unbuffered disk I/O can be as fast as buffered I/O.  The bottom line, however,
1079
 
is that buffered I/O offers predictable performance regardless of the platform
1080
 
and the backing device.  Therefore, it is almost always preferable to use
1081
 
buffered I/O rather than unbuffered I/O for binary data.</p>
1082
 
</div>
1083
 
<div class="section" id="id3">
1084
 
<h3>16.2.4.2. Text I/O<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
1085
 
<p>Text I/O over a binary storage (such as a file) is significantly slower than
1086
 
binary I/O over the same storage, because it requires conversions between
1087
 
unicode and binary data using a character codec.  This can become noticeable
1088
 
handling huge amounts of text data like large log files.  Also,
1089
 
<code class="xref py py-meth docutils literal"><span class="pre">TextIOWrapper.tell()</span></code> and <code class="xref py py-meth docutils literal"><span class="pre">TextIOWrapper.seek()</span></code> are both quite slow
1090
 
due to the reconstruction algorithm used.</p>
1091
 
<p><a class="reference internal" href="#io.StringIO" title="io.StringIO"><code class="xref py py-class docutils literal"><span class="pre">StringIO</span></code></a>, however, is a native in-memory unicode container and will
1092
 
exhibit similar speed to <a class="reference internal" href="#io.BytesIO" title="io.BytesIO"><code class="xref py py-class docutils literal"><span class="pre">BytesIO</span></code></a>.</p>
1093
 
</div>
1094
 
<div class="section" id="multi-threading">
1095
 
<h3>16.2.4.3. Multi-threading<a class="headerlink" href="#multi-threading" title="Permalink to this headline">¶</a></h3>
1096
 
<p><a class="reference internal" href="#io.FileIO" title="io.FileIO"><code class="xref py py-class docutils literal"><span class="pre">FileIO</span></code></a> objects are thread-safe to the extent that the operating system
1097
 
calls (such as <code class="docutils literal"><span class="pre">read(2)</span></code> under Unix) they wrap are thread-safe too.</p>
1098
 
<p>Binary buffered objects (instances of <a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a>,
1099
 
<a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a>, <a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a> and <a class="reference internal" href="#io.BufferedRWPair" title="io.BufferedRWPair"><code class="xref py py-class docutils literal"><span class="pre">BufferedRWPair</span></code></a>)
1100
 
protect their internal structures using a lock; it is therefore safe to call
1101
 
them from multiple threads at once.</p>
1102
 
<p><a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a> objects are not thread-safe.</p>
1103
 
</div>
1104
 
<div class="section" id="reentrancy">
1105
 
<h3>16.2.4.4. Reentrancy<a class="headerlink" href="#reentrancy" title="Permalink to this headline">¶</a></h3>
1106
 
<p>Binary buffered objects (instances of <a class="reference internal" href="#io.BufferedReader" title="io.BufferedReader"><code class="xref py py-class docutils literal"><span class="pre">BufferedReader</span></code></a>,
1107
 
<a class="reference internal" href="#io.BufferedWriter" title="io.BufferedWriter"><code class="xref py py-class docutils literal"><span class="pre">BufferedWriter</span></code></a>, <a class="reference internal" href="#io.BufferedRandom" title="io.BufferedRandom"><code class="xref py py-class docutils literal"><span class="pre">BufferedRandom</span></code></a> and <a class="reference internal" href="#io.BufferedRWPair" title="io.BufferedRWPair"><code class="xref py py-class docutils literal"><span class="pre">BufferedRWPair</span></code></a>)
1108
 
are not reentrant.  While reentrant calls will not happen in normal situations,
1109
 
they can arise from doing I/O in a <a class="reference internal" href="signal.html#module-signal" title="signal: Set handlers for asynchronous events."><code class="xref py py-mod docutils literal"><span class="pre">signal</span></code></a> handler.  If a thread tries to
1110
 
re-enter a buffered object which it is already accessing, a <a class="reference internal" href="exceptions.html#RuntimeError" title="RuntimeError"><code class="xref py py-exc docutils literal"><span class="pre">RuntimeError</span></code></a>
1111
 
is raised.  Note this doesn&#8217;t prohibit a different thread from entering the
1112
 
buffered object.</p>
1113
 
<p>The above implicitly extends to text files, since the <a class="reference internal" href="functions.html#open" title="open"><code class="xref py py-func docutils literal"><span class="pre">open()</span></code></a> function
1114
 
will wrap a buffered object inside a <a class="reference internal" href="#io.TextIOWrapper" title="io.TextIOWrapper"><code class="xref py py-class docutils literal"><span class="pre">TextIOWrapper</span></code></a>.  This includes
1115
 
standard streams and therefore affects the built-in function <a class="reference internal" href="functions.html#print" title="print"><code class="xref py py-func docutils literal"><span class="pre">print()</span></code></a> as
1116
 
well.</p>
1117
 
</div>
1118
 
</div>
1119
 
</div>
1120
 
 
1121
 
 
1122
 
          </div>
1123
 
        </div>
1124
 
      </div>
1125
 
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
1126
 
        <div class="sphinxsidebarwrapper">
1127
 
  <h3><a href="../contents.html">Table Of Contents</a></h3>
1128
 
  <ul>
1129
 
<li><a class="reference internal" href="#">16.2. <code class="docutils literal"><span class="pre">io</span></code> &#8212; Core tools for working with streams</a><ul>
1130
 
<li><a class="reference internal" href="#overview">16.2.1. Overview</a><ul>
1131
 
<li><a class="reference internal" href="#text-i-o">16.2.1.1. Text I/O</a></li>
1132
 
<li><a class="reference internal" href="#binary-i-o">16.2.1.2. Binary I/O</a></li>
1133
 
<li><a class="reference internal" href="#raw-i-o">16.2.1.3. Raw I/O</a></li>
1134
 
</ul>
1135
 
</li>
1136
 
<li><a class="reference internal" href="#high-level-module-interface">16.2.2. High-level Module Interface</a><ul>
1137
 
<li><a class="reference internal" href="#in-memory-streams">16.2.2.1. In-memory streams</a></li>
1138
 
</ul>
1139
 
</li>
1140
 
<li><a class="reference internal" href="#class-hierarchy">16.2.3. Class hierarchy</a><ul>
1141
 
<li><a class="reference internal" href="#i-o-base-classes">16.2.3.1. I/O Base Classes</a></li>
1142
 
<li><a class="reference internal" href="#raw-file-i-o">16.2.3.2. Raw File I/O</a></li>
1143
 
<li><a class="reference internal" href="#buffered-streams">16.2.3.3. Buffered Streams</a></li>
1144
 
<li><a class="reference internal" href="#id1">16.2.3.4. Text I/O</a></li>
1145
 
</ul>
1146
 
</li>
1147
 
<li><a class="reference internal" href="#performance">16.2.4. Performance</a><ul>
1148
 
<li><a class="reference internal" href="#id2">16.2.4.1. Binary I/O</a></li>
1149
 
<li><a class="reference internal" href="#id3">16.2.4.2. Text I/O</a></li>
1150
 
<li><a class="reference internal" href="#multi-threading">16.2.4.3. Multi-threading</a></li>
1151
 
<li><a class="reference internal" href="#reentrancy">16.2.4.4. Reentrancy</a></li>
1152
 
</ul>
1153
 
</li>
1154
 
</ul>
1155
 
</li>
1156
 
</ul>
1157
 
 
1158
 
  <h4>Previous topic</h4>
1159
 
  <p class="topless"><a href="os.html"
1160
 
                        title="previous chapter">16.1. <code class="docutils literal"><span class="pre">os</span></code> &#8212; Miscellaneous operating system interfaces</a></p>
1161
 
  <h4>Next topic</h4>
1162
 
  <p class="topless"><a href="time.html"
1163
 
                        title="next chapter">16.3. <code class="docutils literal"><span class="pre">time</span></code> &#8212; Time access and conversions</a></p>
1164
 
<h3>This Page</h3>
1165
 
<ul class="this-page-menu">
1166
 
  <li><a href="../bugs.html">Report a Bug</a></li>
1167
 
  <li><a href="../_sources/library/io.txt"
1168
 
         rel="nofollow">Show Source</a></li>
1169
 
</ul>
1170
 
 
1171
 
<div id="searchbox" style="display: none" role="search">
1172
 
  <h3>Quick search</h3>
1173
 
    <form class="search" action="../search.html" method="get">
1174
 
      <input type="text" name="q" />
1175
 
      <input type="submit" value="Go" />
1176
 
      <input type="hidden" name="check_keywords" value="yes" />
1177
 
      <input type="hidden" name="area" value="default" />
1178
 
    </form>
1179
 
    <p class="searchtip" style="font-size: 90%">
1180
 
    Enter search terms or a module, class or function name.
1181
 
    </p>
1182
 
</div>
1183
 
<script type="text/javascript">$('#searchbox').show(0);</script>
1184
 
        </div>
1185
 
      </div>
1186
 
      <div class="clearer"></div>
1187
 
    </div>  
1188
 
    <div class="related" role="navigation" aria-label="related navigation">
1189
 
      <h3>Navigation</h3>
1190
 
      <ul>
1191
 
        <li class="right" style="margin-right: 10px">
1192
 
          <a href="../genindex.html" title="General Index"
1193
 
             >index</a></li>
1194
 
        <li class="right" >
1195
 
          <a href="../py-modindex.html" title="Python Module Index"
1196
 
             >modules</a> |</li>
1197
 
        <li class="right" >
1198
 
          <a href="time.html" title="16.3. time — Time access and conversions"
1199
 
             >next</a> |</li>
1200
 
        <li class="right" >
1201
 
          <a href="os.html" title="16.1. os — Miscellaneous operating system interfaces"
1202
 
             >previous</a> |</li>
1203
 
        <li><img src="../_static/py.png" alt=""
1204
 
                 style="vertical-align: middle; margin-top: -1px"/></li>
1205
 
        <li><a href="https://www.python.org/">Python</a> &raquo;</li>
1206
 
        <li>
1207
 
          <span class="version_switcher_placeholder">3.5.1</span>
1208
 
          <a href="../index.html">Documentation </a> &raquo;
1209
 
        </li>
1210
 
 
1211
 
          <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &raquo;</li>
1212
 
          <li class="nav-item nav-item-2"><a href="allos.html" >16. Generic Operating System Services</a> &raquo;</li> 
1213
 
      </ul>
1214
 
    </div>  
1215
 
    <div class="footer">
1216
 
    &copy; <a href="../copyright.html">Copyright</a> 1990-2016, Python Software Foundation.
1217
 
    <br />
1218
 
    The Python Software Foundation is a non-profit corporation.
1219
 
    <a href="https://www.python.org/psf/donations/">Please donate.</a>
1220
 
    <br />
1221
 
    Last updated on Jan 22, 2016.
1222
 
    <a href="../bugs.html">Found a bug</a>?
1223
 
    <br />
1224
 
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.3.3.
1225
 
    </div>
1226
 
 
1227
 
  </body>
1228
 
</html>
 
 
b'\\ No newline at end of file'