<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/base64.py, branch 3.4</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>Escaped backslashes in docstrings.</title>
<updated>2015-04-03T15:12:41+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-04-03T15:12:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9f8a8910a415e31808debe6e9fed7f7c3638d42a'/>
<id>9f8a8910a415e31808debe6e9fed7f7c3638d42a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #20879: Delay the initialization of encoding and decoding tables for</title>
<updated>2014-03-17T21:38:41+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-03-17T21:38:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d6a91a7ab69fe449259d8719acf63cca9af45ba0'/>
<id>d6a91a7ab69fe449259d8719acf63cca9af45ba0</id>
<content type='text'>
base32, ascii85 and base85 codecs in the base64 module, and delay the
initialization of the unquote_to_bytes() table of the urllib.parse module, to
not waste memory if these modules are not used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
base32, ascii85 and base85 codecs in the base64 module, and delay the
initialization of the unquote_to_bytes() table of the urllib.parse module, to
not waste memory if these modules are not used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Closes issue #20728: Remove unused import added in rev 42366e293b7b and</title>
<updated>2014-03-02T09:17:01+00:00</updated>
<author>
<name>Terry Jan Reedy</name>
<email>tjreedy@udel.edu</email>
</author>
<published>2014-03-02T09:17:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6c6596ec52256f3b98475f83f4a7e476094b55f9'/>
<id>6c6596ec52256f3b98475f83f4a7e476094b55f9</id>
<content type='text'>
noticed by Claudiu Popa.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
noticed by Claudiu Popa.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #20363. Fixed BytesWarning triggerred by test suite.</title>
<updated>2014-02-06T20:52:23+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2014-02-06T20:52:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a26b3f183d1101a21c51a5bd0c75834dfe859039'/>
<id>a26b3f183d1101a21c51a5bd0c75834dfe859039</id>
<content type='text'>
Patch by Berker Peksag.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Berker Peksag.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.</title>
<updated>2013-11-17T22:52:25+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2013-11-17T22:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6dd0d461a4e1f3d02784598f1efae185c0bf06bc'/>
<id>6dd0d461a4e1f3d02784598f1efae185c0bf06bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Close #17839: support bytes-like objects in base64 module</title>
<updated>2013-10-02T14:43:22+00:00</updated>
<author>
<name>Nick Coghlan</name>
<email>ncoghlan@gmail.com</email>
</author>
<published>2013-10-02T14:43:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fdf239a855c82bc20df157815de947867aa2648e'/>
<id>fdf239a855c82bc20df157815de947867aa2648e</id>
<content type='text'>
This mostly affected the encodebytes and decodebytes function
(which are used by base64_codec)

Also added a test to ensure all bytes-bytes codecs can handle
memoryview input and tests for handling of multidimensional
and non-bytes format input in the modern base64 API.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This mostly affected the encodebytes and decodebytes function
(which are used by base64_codec)

Also added a test to ensure all bytes-bytes codecs can handle
memoryview input and tests for handling of multidimensional
and non-bytes format input in the modern base64 API.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #18011: base64.b32decode() now raises a binascii.Error if there are</title>
<updated>2013-05-28T12:27:29+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2013-05-28T12:27:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ea2b490f3dad99cfd677be9fd0c730622a723f38'/>
<id>ea2b490f3dad99cfd677be9fd0c730622a723f38</id>
<content type='text'>
non-alphabet characters present in the input string to conform a docstring.
Updated the module documentation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
non-alphabet characters present in the input string to conform a docstring.
Updated the module documentation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #17812: Fixed quadratic complexity of base64.b32encode().</title>
<updated>2013-05-19T08:41:15+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2013-05-19T08:41:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2c3f2f19df0939744774370369b55e3ca214040c'/>
<id>2c3f2f19df0939744774370369b55e3ca214040c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced.</title>
<updated>2013-05-28T12:42:34+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2013-05-28T12:42:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5cc9d32ee9bd61a12e6e0eebdce61f8fb1652fc4'/>
<id>5cc9d32ee9bd61a12e6e0eebdce61f8fb1652fc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #18011: base64.b32decode() now raises a binascii.Error if there are</title>
<updated>2013-05-28T12:30:38+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2013-05-28T12:30:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=77a3ad743f604c11c23ec6c0100360675b5676f8'/>
<id>77a3ad743f604c11c23ec6c0100360675b5676f8</id>
<content type='text'>
non-alphabet characters present in the input string to conform a docstring.
Updated the module documentation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
non-alphabet characters present in the input string to conform a docstring.
Updated the module documentation.
</pre>
</div>
</content>
</entry>
</feed>
