You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<list> = next(<reader>) <spanclass="hljs-comment"># Returns next row as a list of strings.</span>
1499
-
<list> = list(<reader>) <spanclass="hljs-comment"># Returns list of remaining rows.</span>
1499
+
<list> = list(<reader>) <spanclass="hljs-comment"># Returns a list of remaining rows.</span>
1500
1500
</code></pre></div>
1501
1501
1502
1502
<ul>
@@ -1597,7 +1597,7 @@
1597
1597
1598
1598
1599
1599
<div><h2id="bytes"><ahref="#bytes" name="bytes">#</a>Bytes</h2><p><strong>Bytes object is an immutable sequence of single bytes. Mutable version is called bytearray.</strong></p><pre><codeclass="python language-python hljs"><bytes> = <spanclass="hljs-string">b'<str>'</span><spanclass="hljs-comment"># Only accepts ASCII characters and \x00-\xff.</span>
1600
-
<int> = <bytes>[<index>] <spanclass="hljs-comment"># Returns int in range from 0 to 255.</span>
1600
+
<int> = <bytes>[<index>] <spanclass="hljs-comment"># Returns an int in range from 0 to 255.</span>
1601
1601
<bytes> = <bytes>[<slice>] <spanclass="hljs-comment"># Returns bytes even if it has only one element.</span>
1602
1602
<bytes> = <bytes>.join(<coll_of_bytes>) <spanclass="hljs-comment"># Joins elements using bytes as a separator.</span>
1603
1603
</code></pre></div>
@@ -1691,7 +1691,7 @@
1691
1691
<file>.write(<mview>) <spanclass="hljs-comment"># Writes mview to the binary file.</span>
1692
1692
</code></pre></div>
1693
1693
1694
-
<pre><codeclass="python language-python hljs"><list> = list(<mview>) <spanclass="hljs-comment"># Returns list of ints or floats.</span>
1694
+
<pre><codeclass="python language-python hljs"><list> = list(<mview>) <spanclass="hljs-comment"># Returns a list of ints or floats.</span>
1695
1695
<str> = str(<mview>, <spanclass="hljs-string">'utf-8'</span>) <spanclass="hljs-comment"># Treats mview as a bytes object.</span>
0 commit comments