1. c7ff163 Add Python version since deprecation in base64 methods. (#33) (#429) by Berker Peksag · 7 years ago
  2. 5f1a518 Use sequence repetition instead of bytes constructor with integer argument. by Serhiy Storchaka · 8 years ago
  3. 6c783ac Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. by Serhiy Storchaka · 8 years ago
  4. 205e75b Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. by Serhiy Storchaka · 8 years ago
  5. 150ea1a Issue #22088: Merge base64 docs from 3.5 by Martin Panter · 8 years ago
  6. ee3074e Issue #22088: Clarify base-64 alphabets and which characters are discarded by Martin Panter · 8 years ago
  7. e84c976 Issue #25357: Add an optional newline paramer to binascii.b2a_base64(). by Victor Stinner · 9 years ago
  8. 9f8a891 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  9. d6a91a7 Issue #20879: Delay the initialization of encoding and decoding tables for by Victor Stinner · 10 years ago
  10. 6c6596e Closes issue #20728: Remove unused import added in rev 42366e293b7b and by Terry Jan Reedy · 10 years ago
  11. a26b3f1 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 10 years ago
  12. 6dd0d46 Issue #17618: Add Base85 and Ascii85 encoding/decoding to the base64 module. by Antoine Pitrou · 11 years ago
  13. fdf239a Close #17839: support bytes-like objects in base64 module by Nick Coghlan · 11 years ago
  14. ea2b490 Issue #18011: base64.b32decode() now raises a binascii.Error if there are by Serhiy Storchaka · 11 years ago
  15. 2c3f2f1 Issue #17812: Fixed quadratic complexity of base64.b32encode(). by Serhiy Storchaka · 11 years ago
  16. 5cc9d32 Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced. by Serhiy Storchaka · 11 years ago
  17. 77a3ad7 Issue #18011: base64.b32decode() now raises a binascii.Error if there are by Serhiy Storchaka · 11 years ago
  18. 87aa7dc Issue #17812: Fixed quadratic complexity of base64.b32encode(). by Serhiy Storchaka · 11 years ago
  19. 95c1c48 Speed up base64.urlsafe_{en,de}code(). by Guido van Rossum · 12 years ago
  20. ea6b4d5 Issue #13641: Decoding functions in the base64 module now accept ASCII-only unicode strings. by Antoine Pitrou · 12 years ago
  21. 6495136 #1466065: add validate option to base64.b64decode by R. David Murray · 14 years ago
  22. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  23. 84befb0 Fix failure introduced in r83182. by Ezio Melotti · 14 years ago
  24. 479736b Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer and by Victor Stinner · 14 years ago
  25. 90f5ba5 convert shebang lines: python -> python3 by Benjamin Peterson · 14 years ago
  26. 5629268 Make b64encode raises properly a TypeError when altchars is not bytes. by Alexandre Vassalotti · 15 years ago
  27. 706824f More codestring -> codebytes. by Georg Brandl · 15 years ago
  28. b54d801 #3613: add base64.encodebytes and decodebytes as the new spelling of encodestring and decodestring; deprecate the latter. by Georg Brandl · 15 years ago
  29. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  30. 5209857f Removed implicit convertions of str object to bytes from base64. by Alexandre Vassalotti · 16 years ago
  31. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  32. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  33. 083e20c Forgot one. This makes test_urllib2.py pass. by Guido van Rossum · 17 years ago
  34. 54a40cb Force test_xmlrpc to pass. I'm not happy with how I did this, but I don't by Guido van Rossum · 17 years ago
  35. 98b349f Fix some tests I broke. (More to follow.) by Guido van Rossum · 17 years ago
  36. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  37. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  38. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  39. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  40. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  41. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  42. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 17 years ago
  43. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  44. 6e57c2a [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a single null byte; test a null byte in all encodings to be sure it works by Andrew M. Kuchling · 19 years ago
  45. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  46. 8f799e4 __all__: Remove freenet_b64encode and freenet_b64decode. by Barry Warsaw · 20 years ago
  47. 4c904d1 Added more complete RFC 3548 support for Base64, Base32, and Base16 by Barry Warsaw · 20 years ago
  48. 54e54c6 The first batch of changes recommended by the fixdiv tool. These are by Guido van Rossum · 23 years ago
  49. fbb2b4c check in for patch #430846 by Peter Schneider-Kamp · 23 years ago
  50. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  51. 0365180 a couple of nits from Patch #100933 by Jeremy Hylton · 24 years ago
  52. 4acc25b Mass patch by Ka-Ping Yee: by Guido van Rossum · 24 years ago
  53. d2783da The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM). by Guido van Rossum · 24 years ago
  54. 5b34ec1 Fixed spelling in comment: "RFC", not "RFX". by Fred Drake · 26 years ago
  55. 25107de Set correct RFC number. Open input in binary. by Guido van Rossum · 27 years ago
  56. aa925a5 Add #! line. by Guido van Rossum · 27 years ago
  57. 951213e Use binascii module (resulting in a 60-fold speedup:-) by Jack Jansen · 29 years ago
  58. 54c1510 improved test/main program by Guido van Rossum · 29 years ago
  59. 3b8e160 upgdaded the test program by Guido van Rossum · 29 years ago
  60. f194546 two mime encoding schemes by Guido van Rossum · 29 years ago