1. 7668a8b Use calloc-based functions, not malloc. (GH-19152) by Andy Lester · 4 years, 5 months ago
  2. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 4 years, 6 months ago
  3. aa0c080 bpo-1635741: Fix potential refleaks in binascii module (GH-18613) by Hai Shi · 4 years, 6 months ago
  4. c38fd0d bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276) by Victor Stinner · 4 years, 7 months ago
  5. beea26b bpo-39353: Deprecate the binhex module (GH-18025) by Victor Stinner · 4 years, 7 months ago
  6. 1c5e68e bpo-34749: Improved performance of binascii.a2b_base64(). (GH-9444) by Sergey Fedoseev · 5 years ago
  7. 0c2f930 bpo-22385: Support output separators in hex methods. (#13578) by Gregory P. Smith · 5 years ago
  8. 33e71e0 bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108) by Marcel Plch · 5 years ago
  9. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 5 years ago
  10. 1fba2ff bpo-34736: improve error message for invalid length b64decode inputs (GH-9563) by Tal Einat · 6 years ago
  11. 1b85c71 bpo-33770: improve base64 exception message for encoded inputs of invalid length (#7416) by Tal Einat · 6 years ago
  12. 6b5df90 bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586) by Sergey Fedoseev · 7 years ago
  13. 679b566 bpo-9566: Fix some Windows x64 compiler warnings (#2492) by Segev Finer · 7 years ago
  14. 13f1f42 bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (#1326) by Xiang Zhang · 7 years ago
  15. 1374dbb restore *data* parameter of binascii.b2a_base64 to positional-only (#1352) by Xiang Zhang · 7 years ago
  16. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  17. 520569e Issue #29004: Merge crc_hqx() doc from 3.5 by Martin Panter · 8 years ago
  18. 3310e14 Issue #29004: Document binascii.crc_hqx() implements CRC-CCITT by Martin Panter · 8 years ago
  19. 62a1f02 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  20. e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
  21. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  22. b6f78c2 merge 3.5 (closes #27760) by Benjamin Peterson · 8 years ago
  23. 91060f2 merge 3.4 (closes #27760) by Benjamin Peterson · 8 years ago
  24. 5295532 merge 3.3 (closes #27760) by Benjamin Peterson · 8 years ago
  25. 4f97651 fix possible integer overflow in binascii.b2a_qp (closes #27760) by Benjamin Peterson · 8 years ago
  26. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  27. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  28. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  29. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  30. f9c9a3f Refactor binascii.rledecode_hqx() by Victor Stinner · 9 years ago
  31. 1bfe930 Issue #25384: Fix binascii.rledecode_hqx() by Victor Stinner · 9 years ago
  32. eaaaf13 Issue #25384: Use _PyBytesWriter API in binascii by Victor Stinner · 9 years ago
  33. e84c976 Issue #25357: Add an optional newline paramer to binascii.b2a_base64(). by Victor Stinner · 9 years ago
  34. 9c6b916 Switch binascii over to using the common _Py_strhex implementation for its hex by Gregory P. Smith · 9 years ago
  35. e3037e1 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  36. 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  37. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  38. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  39. 3cd30c2 Issue #13637: Improve exception message of a2b_* functions. by Berker Peksag · 10 years ago
  40. b176d40 Issue #23280: Fix docstrings for binascii.(un)hexlify by Zachary Ware · 10 years ago
  41. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  42. b62deac cleanup after custom buffer converter by Benjamin Peterson · 11 years ago
  43. f256c22 Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch). by Larry Hastings · 11 years ago
  44. 1278561 Fixed converting errors in the binascii module (issue20151). by Serhiy Storchaka · 11 years ago
  45. 3ffd913 Issue #20151: The binascii module now uses Argument Clinic. by Serhiy Storchaka · 11 years ago
  46. c3f57e4 Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  47. 5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  48. 7979926 Issue #18408: Fix usage of _PyBytes_Resize() by Victor Stinner · 11 years ago
  49. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  50. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  51. 0831676 Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. by Antoine Pitrou · 13 years ago
  52. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  53. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  54. 922e904 Fix issue10324 - Modules/binascii.c: simplify expressions by Senthil Kumaran · 14 years ago
  55. 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 14 years ago
  56. 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 14 years ago
  57. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
  58. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  59. 9f96ffc Remove duplicated line when merging (it was even valid C!). by Antoine Pitrou · 15 years ago
  60. 747e8b3 Merged revisions 77528 via svnmerge from by Antoine Pitrou · 15 years ago
  61. 2843aa8 Merged revisions 77506 via svnmerge from by Antoine Pitrou · 15 years ago
  62. bc9d474 #4542: On Windows, binascii.crc32 still accepted str as binary input. by Amaury Forgeot d'Arc · 16 years ago
  63. 15b16a3 Issue #4387: binascii now refuses to accept str as binary input. by Martin v. Löwis · 16 years ago
  64. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  65. 34ed9f7 Fix building binascii when not using the zlib's crc32 (build failure on Windows buildbots) by Antoine Pitrou · 16 years ago
  66. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  67. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  68. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  69. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  70. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  71. 3c0e4d2 Merge the table type change to save space on LP64 platforms from trunk r61875. by Gregory P. Smith · 16 years ago
  72. 4027bf8 Fix crash on 64-bit platforms by Neal Norwitz · 16 years ago
  73. 1dc5400 Merged revisions 61820-61823 via svnmerge from by Christian Heimes · 16 years ago
  74. 2727503 crc32 always returns unsigned. cleanup the code a bit and revert r61648 with by Gregory P. Smith · 16 years ago
  75. d5e2b6f Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from by Christian Heimes · 16 years ago
  76. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  77. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  78. fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
  79. 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  80. 1a0270f Remove unused code. by Walter Dörwald · 17 years ago
  81. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  82. 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 17 years ago
  83. 0925e41 Forwardport checkin: by Walter Dörwald · 17 years ago
  84. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  85. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  86. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  87. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  88. 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 19 years ago
  89. 9c54448 Fix brainfart. by Thomas Wouters · 19 years ago
  90. f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 19 years ago
  91. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  92. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  93. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  94. 9fd5e9a Remove redunandant assertions from last checkin. by Raymond Hettinger · 20 years ago
  95. 658717e SF #1022953: binascii.a2b_hqx("") raises SystemError by Raymond Hettinger · 20 years ago
  96. b600fe9 Switch arguments to memset (kudos to MSVC C4318 for finding that) by Martin v. Löwis · 20 years ago
  97. fe92eef Valgrind was reporting an uninitialized read for bad input. by Neal Norwitz · 20 years ago
  98. 23164a5 In order to fix SF bug # 824977, we replace calloc()/free() calls in by Barry Warsaw · 20 years ago
  99. 9e1c192 binascii_a2b_base64: Properly return an empty string if the input was all by Thomas Wouters · 21 years ago
  100. 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 22 years ago