index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
base64.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-93096: Remove `python -m base64 -t` (gh-94230)
Oleg Iarygin
2022-07-02
1
-14/+2
*
bpo-35970: Add help flag to base64 module (GH-28774)
Ammar Askar
2021-10-07
1
-5/+8
*
bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)
Raymond Hettinger
2021-09-20
1
-3/+3
*
bpo-44690: Adopt binacii.a2b_base64's strict mode in base64.b64decode (GH-27272)
Idan Moral
2021-08-23
1
-3/+4
*
bpo-39068: Fix race condition in base64 (GH-17627)
Brandon Stansbury
2020-12-31
1
-2/+2
*
bpo-16995: add support for base32 extended hex (base32hex) (GH-20441)
Filipe LaĆns
2020-08-10
1
-31/+55
*
bpo-39351: Remove base64.encodestring() (GH-18022)
Victor Stinner
2020-01-16
1
-16/+0
*
bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...
Serhiy Storchaka
2020-01-05
1
-1/+1
*
bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351)
Serhiy Storchaka
2018-07-24
1
-12/+5
*
Add Python version since deprecation in base64 methods. (#33)
Matthias Bussonnier
2017-03-02
1
-2/+4
*
Use sequence repetition instead of bytes constructor with integer argument.
Serhiy Storchaka
2016-09-11
1
-1/+1
*
Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.
Serhiy Storchaka
2016-02-24
1
-4/+9
|
\
|
*
Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.
Serhiy Storchaka
2016-02-24
1
-4/+9
*
|
Issue #22088: Merge base64 docs from 3.5
Martin Panter
2016-02-24
1
-64/+58
|
\
\
|
|
/
|
*
Issue #22088: Clarify base-64 alphabets and which characters are discarded
Martin Panter
2016-02-23
1
-64/+58
*
|
Issue #25357: Add an optional newline paramer to binascii.b2a_base64().
Victor Stinner
2015-10-11
1
-2/+1
|
/
*
Escaped backslashes in docstrings.
Serhiy Storchaka
2015-04-03
1
-2/+2
*
Issue #20879: Delay the initialization of encoding and decoding tables for
Victor Stinner
2014-03-17
1
-17/+42
*
Closes issue #20728: Remove unused import added in rev 42366e293b7b and
Terry Jan Reedy
2014-03-02
1
-1/+0
*
Issue #20363. Fixed BytesWarning triggerred by test suite.
Serhiy Storchaka
2014-02-06
1
-1/+1
|
\
*
|
Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.
Antoine Pitrou
2013-11-17
1
-1/+190
*
|
Close #17839: support bytes-like objects in base64 module
Nick Coghlan
2013-10-02
1
-16/+24
*
|
Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced.
Serhiy Storchaka
2013-05-28
1
-1/+1
*
|
Issue #18011: base64.b32decode() now raises a binascii.Error if there are
Serhiy Storchaka
2013-05-28
1
-1/+1
|
\
\
|
|
/
|
*
Issue #18011: base64.b32decode() now raises a binascii.Error if there are
Serhiy Storchaka
2013-05-28
1
-1/+1
*
|
Issue #17812: Fixed quadratic complexity of base64.b32encode().
Serhiy Storchaka
2013-05-19
1
-77/+48
|
\
\
|
|
/
|
*
Issue #17812: Fixed quadratic complexity of base64.b32encode().
Serhiy Storchaka
2013-05-19
1
-6/+6
|
/
*
Speed up base64.urlsafe_{en,de}code().
Guido van Rossum
2012-06-22
1
-13/+11
*
Issue #13641: Decoding functions in the base64 module now accept ASCII-only u...
Antoine Pitrou
2012-02-20
1
-11/+15
*
#1466065: add validate option to base64.b64decode
R. David Murray
2010-11-11
1
-4/+9
*
Explicitly close some files (from issue #10093)
Antoine Pitrou
2010-10-14
1
-1/+2
*
Fix failure introduced in r83182.
Ezio Melotti
2010-07-28
1
-1/+1
*
Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer and
Victor Stinner
2010-05-25
1
-2/+2
*
convert shebang lines: python -> python3
Benjamin Peterson
2010-03-11
1
-1/+1
*
Make b64encode raises properly a TypeError when altchars is not bytes.
Alexandre Vassalotti
2009-06-29
1
-2/+2
*
More codestring -> codebytes.
Georg Brandl
2009-06-04
1
-2/+2
*
#3613: add base64.encodebytes and decodebytes as the new spelling of encodest...
Georg Brandl
2009-06-04
1
-10/+18
*
#2834: Change re module semantics, so that str and bytes mixing is forbidden,
Antoine Pitrou
2008-08-19
1
-7/+7
*
Removed implicit convertions of str object to bytes from base64.
Alexandre Vassalotti
2008-05-03
1
-9/+13
*
Rename buffer -> bytearray.
Guido van Rossum
2007-11-21
1
-13/+13
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-16/+19
*
Forgot one. This makes test_urllib2.py pass.
Guido van Rossum
2007-08-29
1
-1/+1
*
Force test_xmlrpc to pass. I'm not happy with how I did this, but I don't
Guido van Rossum
2007-08-27
1
-4/+10
*
Fix some tests I broke. (More to follow.)
Guido van Rossum
2007-08-27
1
-3/+6
*
Changes in anticipation of stricter str vs. bytes enforcement.
Guido van Rossum
2007-08-27
1
-7/+5
*
Make test_base64 pass.
Guido van Rossum
2007-05-22
1
-116/+139
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
1
-3/+1
*
Fix most trivially-findable print statements.
Guido van Rossum
2007-02-09
1
-4/+4
*
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum
2007-01-15
1
-1/+1
*
SF patch 1631942 by Collin Winter:
Guido van Rossum
2007-01-10
1
-2/+2
[next]