1. 3cd30c2 Issue #13637: Improve exception message of a2b_* functions. by Berker Peksag · 9 years ago
  2. b176d40 Issue #23280: Fix docstrings for binascii.(un)hexlify by Zachary Ware · 9 years ago
  3. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  4. b62deac cleanup after custom buffer converter by Benjamin Peterson · 10 years ago
  5. f256c22 Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch). by Larry Hastings · 10 years ago
  6. 1278561 Fixed converting errors in the binascii module (issue20151). by Serhiy Storchaka · 10 years ago
  7. 3ffd913 Issue #20151: The binascii module now uses Argument Clinic. by Serhiy Storchaka · 10 years ago
  8. c3f57e4 Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  9. 5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  10. 7979926 Issue #18408: Fix usage of _PyBytes_Resize() by Victor Stinner · 11 years ago
  11. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  12. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  13. 0831676 Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. by Antoine Pitrou · 13 years ago
  14. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  15. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  16. 922e904 Fix issue10324 - Modules/binascii.c: simplify expressions by Senthil Kumaran · 14 years ago
  17. 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 14 years ago
  18. 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 14 years ago
  19. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
  20. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  21. 9f96ffc Remove duplicated line when merging (it was even valid C!). by Antoine Pitrou · 14 years ago
  22. 747e8b3 Merged revisions 77528 via svnmerge from by Antoine Pitrou · 14 years ago
  23. 2843aa8 Merged revisions 77506 via svnmerge from by Antoine Pitrou · 14 years ago
  24. bc9d474 #4542: On Windows, binascii.crc32 still accepted str as binary input. by Amaury Forgeot d'Arc · 16 years ago
  25. 15b16a3 Issue #4387: binascii now refuses to accept str as binary input. by Martin v. Löwis · 16 years ago
  26. 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
  27. 34ed9f7 Fix building binascii when not using the zlib's crc32 (build failure on Windows buildbots) by Antoine Pitrou · 16 years ago
  28. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  29. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  30. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  31. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  32. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  33. 3c0e4d2 Merge the table type change to save space on LP64 platforms from trunk r61875. by Gregory P. Smith · 16 years ago
  34. 4027bf8 Fix crash on 64-bit platforms by Neal Norwitz · 16 years ago
  35. 1dc5400 Merged revisions 61820-61823 via svnmerge from by Christian Heimes · 16 years ago
  36. 2727503 crc32 always returns unsigned. cleanup the code a bit and revert r61648 with by Gregory P. Smith · 16 years ago
  37. 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
  38. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  39. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  40. fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
  41. 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  42. 1a0270f Remove unused code. by Walter Dörwald · 17 years ago
  43. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  44. 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 17 years ago
  45. 0925e41 Forwardport checkin: by Walter Dörwald · 17 years ago
  46. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  47. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  48. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  49. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  50. 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 18 years ago
  51. 9c54448 Fix brainfart. by Thomas Wouters · 18 years ago
  52. f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 18 years ago
  53. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  54. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  55. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  56. 9fd5e9a Remove redunandant assertions from last checkin. by Raymond Hettinger · 20 years ago
  57. 658717e SF #1022953: binascii.a2b_hqx("") raises SystemError by Raymond Hettinger · 20 years ago
  58. b600fe9 Switch arguments to memset (kudos to MSVC C4318 for finding that) by Martin v. Löwis · 20 years ago
  59. fe92eef Valgrind was reporting an uninitialized read for bad input. by Neal Norwitz · 20 years ago
  60. 23164a5 In order to fix SF bug # 824977, we replace calloc()/free() calls in by Barry Warsaw · 20 years ago
  61. 9e1c192 binascii_a2b_base64: Properly return an empty string if the input was all by Thomas Wouters · 21 years ago
  62. 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 22 years ago
  63. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  64. 934c1a1 Another stab at SF 576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
  65. a98011c Fix for SF bug #576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
  66. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  67. 1fbb577 SF bug #494738: binascii_b2a_base64 overwrites memory. by Tim Peters · 23 years ago
  68. 355bc0c Change the limit on the input size for b2a_base64 to what will fit in by Guido van Rossum · 23 years ago
  69. a645b30 Add various typecasts (back and forth from char * to unsigned char *) by Greg Ward · 23 years ago
  70. 16dc7f4 Patch #462190, patch #464070: Support quoted printable in the binascii module. by Martin v. Löwis · 23 years ago
  71. d895b20 This closes bug #430849 (internal error produced by binascii.a2b_base64) by Peter Schneider-Kamp · 23 years ago
  72. 92d8917 Address a bug in the uuencode decoder, reported bu "donut" in SF bug by Guido van Rossum · 23 years ago
  73. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  74. b59ab42 Fix new compiler warnings. Unused var in compile.c. Argsize mismatches by Tim Peters · 24 years ago
  75. 1616847 binascii_unhexlify(): Better error message, courtesy effbot. by Barry Warsaw · 24 years ago
  76. e977c21 After a brief conversation and code review with TP, adding two very by Barry Warsaw · 24 years ago
  77. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  78. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  79. a788a7f ANSI-fication by Peter Schneider-Kamp · 24 years ago
  80. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  81. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  82. 7d47c9e Patch by Jim Ahlstrom to add crc32, a useful checksum function by Guido van Rossum · 24 years ago
  83. 2db4f47 Patch by Jason Trowbridge. (Followup to his PR#110.) (Slightly reformatted.) by Guido van Rossum · 25 years ago
  84. eba24bb Fix PR#110 -- bad input ("====") for a2b_base64() caused it to call by Guido van Rossum · 25 years ago
  85. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  86. 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
  87. 7dbb48a Converted to new exception style (Jack) by Guido van Rossum · 27 years ago
  88. 5c159bd Plug memory leak (DECREF doc string properly after inserting in dict). by Guido van Rossum · 27 years ago
  89. 1243ae7 Allow '@' character as end of line padding in uuencode format. by Guido van Rossum · 27 years ago
  90. 5f4ce18 Renamed. by Roger E. Masse · 27 years ago
  91. 9c6ba5e Fix leak involving BuildValue("...O..."). by Guido van Rossum · 27 years ago
  92. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  93. 485f2da Add unsigned char cast by Guido van Rossum · 28 years ago
  94. ba1de3b Fixed off-by-one error in rle-decode, and allow whitespace in base64 by Jack Jansen · 28 years ago
  95. 5d95797 Allow '@' for ' ' in uuencoded files. by Jack Jansen · 29 years ago
  96. 84bbc2e Added base64 support by Jack Jansen · 29 years ago
  97. 0223aa1 Obscure bugfix by Jack Jansen · 29 years ago
  98. eaeb1c8 Added missing 'leftchar' initializer. by Jack Jansen · 29 years ago
  99. 7278119 Helper module for uuencode and binhex coders by Jack Jansen · 29 years ago