aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/base64.py
Commit message (Expand)AuthorAge
* gh-118761: substitute `re` import in `base64.b16decode` for a more efficient ...Bénédikt Tran2025-01-14
* gh-118673: Remove shebang and executable bits from stdlib modules. (#119658)Jason R. Coombs2024-05-29
* Clarify base64.a85encode docs: *wrapcols* doesn't count the newline (GH-119409)Petr Viktorin2024-05-24
* bpo-31116: Add Z85 variant to base64 (GH-30598)Matan Perelman2024-02-25
* gh-61199: Remove superfluous global statements from `base64._b32{en,de}code()...Romuald Brunet2023-11-07
* GH-102456: Fix docstring and getopt options for base64 (gh-102457)Partha P. Mukherjee2023-04-02
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-26
* gh-93096: Remove `python -m base64 -t` (gh-94230)Oleg Iarygin2022-07-02
* bpo-35970: Add help flag to base64 module (GH-28774)Ammar Askar2021-10-06
* bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)Raymond Hettinger2021-09-20
* bpo-44690: Adopt binacii.a2b_base64's strict mode in base64.b64decode (GH-27272)Idan Moral2021-08-23
* bpo-39068: Fix race condition in base64 (GH-17627)Brandon Stansbury2020-12-31
* bpo-16995: add support for base32 extended hex (base32hex) (GH-20441)Filipe Laíns2020-08-10
* bpo-39351: Remove base64.encodestring() (GH-18022)Victor Stinner2020-01-16
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Serhiy Storchaka2020-01-05
* bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351)Serhiy Storchaka2018-07-24
* Add Python version since deprecation in base64 methods. (#33)Matthias Bussonnier2017-03-02
* Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-11
* Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.Serhiy Storchaka2016-02-24
|\
| * Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.Serhiy Storchaka2016-02-24
* | Issue #22088: Merge base64 docs from 3.5Martin Panter2016-02-24
|\|
| * Issue #22088: Clarify base-64 alphabets and which characters are discardedMartin Panter2016-02-23
* | Issue #25357: Add an optional newline paramer to binascii.b2a_base64().Victor Stinner2015-10-11
|/
* Escaped backslashes in docstrings.Serhiy Storchaka2015-04-03
* Issue #20879: Delay the initialization of encoding and decoding tables forVictor Stinner2014-03-17
* Closes issue #20728: Remove unused import added in rev 42366e293b7b andTerry Jan Reedy2014-03-02
* Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-06
|\
* | Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.Antoine Pitrou2013-11-17
* | Close #17839: support bytes-like objects in base64 moduleNick Coghlan2013-10-03
* | Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced.Serhiy Storchaka2013-05-28
* | Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-28
|\|
| * Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-28
* | Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-19
|\|
| * Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-19
|/
* Speed up base64.urlsafe_{en,de}code().Guido van Rossum2012-06-22
* Issue #13641: Decoding functions in the base64 module now accept ASCII-only u...Antoine Pitrou2012-02-20
* #1466065: add validate option to base64.b64decodeR. David Murray2010-11-11
* Explicitly close some files (from issue #10093)Antoine Pitrou2010-10-14
* Fix failure introduced in r83182.Ezio Melotti2010-07-28
* Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer andVictor Stinner2010-05-25
* convert shebang lines: python -> python3Benjamin Peterson2010-03-11
* Make b64encode raises properly a TypeError when altchars is not bytes.Alexandre Vassalotti2009-06-29
* More codestring -> codebytes.Georg Brandl2009-06-04
* #3613: add base64.encodebytes and decodebytes as the new spelling of encodest...Georg Brandl2009-06-04
* #2834: Change re module semantics, so that str and bytes mixing is forbidden,Antoine Pitrou2008-08-19
* Removed implicit convertions of str object to bytes from base64.Alexandre Vassalotti2008-05-03
* Rename buffer -> bytearray.Guido van Rossum2007-11-21
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Forgot one. This makes test_urllib2.py pass.Guido van Rossum2007-08-29
* Force test_xmlrpc to pass. I'm not happy with how I did this, but I don'tGuido van Rossum2007-08-27