summaryrefslogtreecommitdiff
path: root/Lib/base64.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351)...Miss Islington (bot)2018-07-241-12/+5
* Add Python version since deprecation in base64 methods. (#33)Matthias Bussonnier2017-03-021-2/+4
* Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-1/+1
* Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.Serhiy Storchaka2016-02-241-4/+9
|\
| * Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.Serhiy Storchaka2016-02-241-4/+9
* | Issue #22088: Merge base64 docs from 3.5Martin Panter2016-02-241-64/+58
|\ \ | |/
| * Issue #22088: Clarify base-64 alphabets and which characters are discardedMartin Panter2016-02-231-64/+58
* | Issue #25357: Add an optional newline paramer to binascii.b2a_base64().Victor Stinner2015-10-111-2/+1
|/
* Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-2/+2
* Issue #20879: Delay the initialization of encoding and decoding tables forVictor Stinner2014-03-171-17/+42
* Closes issue #20728: Remove unused import added in rev 42366e293b7b andTerry Jan Reedy2014-03-021-1/+0
* Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-061-1/+1
|\
* | Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.Antoine Pitrou2013-11-171-1/+190
* | Close #17839: support bytes-like objects in base64 moduleNick Coghlan2013-10-031-16/+24
* | Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced.Serhiy Storchaka2013-05-281-1/+1
* | Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-1/+1
|\ \ | |/
| * Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-1/+1
* | Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-191-77/+48
|\ \ | |/
| * Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-191-6/+6
|/
* Speed up base64.urlsafe_{en,de}code().Guido van Rossum2012-06-221-13/+11
* Issue #13641: Decoding functions in the base64 module now accept ASCII-only u...Antoine Pitrou2012-02-201-11/+15
* #1466065: add validate option to base64.b64decodeR. David Murray2010-11-111-4/+9
* Explicitly close some files (from issue #10093)Antoine Pitrou2010-10-141-1/+2
* Fix failure introduced in r83182.Ezio Melotti2010-07-281-1/+1
* Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer andVictor Stinner2010-05-251-2/+2
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
* Make b64encode raises properly a TypeError when altchars is not bytes.Alexandre Vassalotti2009-06-291-2/+2
* More codestring -> codebytes.Georg Brandl2009-06-041-2/+2
* #3613: add base64.encodebytes and decodebytes as the new spelling of encodest...Georg Brandl2009-06-041-10/+18
* #2834: Change re module semantics, so that str and bytes mixing is forbidden,Antoine Pitrou2008-08-191-7/+7
* Removed implicit convertions of str object to bytes from base64.Alexandre Vassalotti2008-05-031-9/+13
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-13/+13
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-16/+19
* Forgot one. This makes test_urllib2.py pass.Guido van Rossum2007-08-291-1/+1
* Force test_xmlrpc to pass. I'm not happy with how I did this, but I don'tGuido van Rossum2007-08-271-4/+10
* Fix some tests I broke. (More to follow.)Guido van Rossum2007-08-271-3/+6
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-7/+5
* Make test_base64 pass.Guido van Rossum2007-05-221-116/+139
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-3/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-4/+4
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+3
* [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ...Andrew M. Kuchling2005-06-081-4/+6
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* __all__: Remove freenet_b64encode and freenet_b64decode.Barry Warsaw2004-01-071-1/+0
* Added more complete RFC 3548 support for Base64, Base32, and Base16Barry Warsaw2004-01-041-9/+288
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-041-1/+1
* check in for patch #430846Peter Schneider-Kamp2001-06-071-10/+6