summaryrefslogtreecommitdiff
path: root/Lib/test/test_base64.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True.Serhiy Storchaka2016-02-241-2/+1
* Issue #22088: Clarify base-64 alphabets and which characters are discardedMartin Panter2016-02-231-2/+18
* Issue #24279: Update test_base64 to use test.support.script_helper.Berker Peksag2015-07-251-17/+9
* Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module.Antoine Pitrou2013-11-171-2/+252
* Close #17839: support bytes-like objects in base64 moduleNick Coghlan2013-10-031-23/+87
* Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-3/+5
* Added base64 module tests for non-binary files.Serhiy Storchaka2013-04-281-2/+10
* Issue #17842. Added base64 module tests with bytearray arguments.Serhiy Storchaka2013-04-281-1/+26
* Closes #14158: merged test file resilience fix from 3.2.Vinay Sajip2012-03-021-0/+5
|\
| * Closes #14158: improved resilience to test files left behind.Vinay Sajip2012-03-021-0/+5
* | Fix use of assertRaises following c760bd844222 (spotted by Alex Gaynor).Antoine Pitrou2012-02-201-0/+2
* | Issue #13641: Decoding functions in the base64 module now accept ASCII-only u...Antoine Pitrou2012-02-201-59/+104
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-8/+8
* #1466065: add validate option to base64.b64decodeR. David Murray2010-11-111-1/+17
* Fix the new TestMain.test_decode() of test_base64 for WindowsVictor Stinner2010-05-251-1/+1
* Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer andVictor Stinner2010-05-251-0/+34
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-1/+1
* #3613: add base64.encodebytes and decodebytes as the new spelling of encodest...Georg Brandl2009-06-041-16/+16
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Removed implicit convertions of str object to bytes from base64.Alexandre Vassalotti2008-05-031-3/+24
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-12/+12
* Make test_base64 pass.Guido van Rossum2007-05-221-110/+114
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-10/+2
* [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ...Andrew M. Kuchling2005-06-081-0/+6
* More complete code coverage, including testing the new RFC 3548 support.Barry Warsaw2004-01-041-26/+181
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-17/+17
* Made it more readable.Guido van Rossum2002-08-221-46/+30
* base64.decodestring('') should return '' instead of raising anBarry Warsaw2002-08-151-6/+1
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Whitespace normalization.Tim Peters2002-05-231-16/+15
* Added Mitchell Surface's regression tests for base64. Closes patch #550002.Raymond Hettinger2002-05-181-0/+59