- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- aef3e52 On platforms without zlib, make this do the right thing and return the python by Gregory P. Smith · 17 years ago
- 1fa588e Use a 32-bit unsigned int here, a long is not needed. by Gregory P. Smith · 17 years ago
- 440ca77 Have the binascii module use zlib's optimized crc32() function when available by Gregory P. Smith · 17 years ago
- c856fa8 Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing. by Gregory P. Smith · 17 years ago
- 3ebc45d Backport checkin: by Walter Dörwald · 18 years ago
- 4aef727 Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters by Georg Brandl · 18 years ago
- 25aabf4 Bug #1588217: don't parse "= " as a soft line break in binascii's by Georg Brandl · 18 years ago
- 6ee7d01 Make binascii.hexlify() use s# for its arguments instead of t# to actually by Brett Cannon · 18 years ago
- 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
- 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 19 years ago
- 9c54448 Fix brainfart. by Thomas Wouters · 19 years ago
- f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 9fd5e9a Remove redunandant assertions from last checkin. by Raymond Hettinger · 20 years ago
- 658717e SF #1022953: binascii.a2b_hqx("") raises SystemError by Raymond Hettinger · 20 years ago
- b600fe9 Switch arguments to memset (kudos to MSVC C4318 for finding that) by Martin v. Löwis · 20 years ago
- fe92eef Valgrind was reporting an uninitialized read for bad input. by Neal Norwitz · 20 years ago
- 23164a5 In order to fix SF bug # 824977, we replace calloc()/free() calls in by Barry Warsaw · 21 years ago
- 9e1c192 binascii_a2b_base64: Properly return an empty string if the input was all by Thomas Wouters · 22 years ago
- 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 22 years ago
- fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
- 934c1a1 Another stab at SF 576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
- a98011c Fix for SF bug #576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- 1fbb577 SF bug #494738: binascii_b2a_base64 overwrites memory. by Tim Peters · 23 years ago
- 355bc0c Change the limit on the input size for b2a_base64 to what will fit in by Guido van Rossum · 23 years ago
- a645b30 Add various typecasts (back and forth from char * to unsigned char *) by Greg Ward · 23 years ago
- 16dc7f4 Patch #462190, patch #464070: Support quoted printable in the binascii module. by Martin v. Löwis · 23 years ago
- d895b20 This closes bug #430849 (internal error produced by binascii.a2b_base64) by Peter Schneider-Kamp · 23 years ago
- 92d8917 Address a bug in the uuencode decoder, reported bu "donut" in SF bug by Guido van Rossum · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- b59ab42 Fix new compiler warnings. Unused var in compile.c. Argsize mismatches by Tim Peters · 24 years ago
- 1616847 binascii_unhexlify(): Better error message, courtesy effbot. by Barry Warsaw · 24 years ago
- e977c21 After a brief conversation and code review with TP, adding two very by Barry Warsaw · 24 years ago
- e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
- f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
- a788a7f ANSI-fication by Peter Schneider-Kamp · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- 7d47c9e Patch by Jim Ahlstrom to add crc32, a useful checksum function by Guido van Rossum · 25 years ago
- 2db4f47 Patch by Jason Trowbridge. (Followup to his PR#110.) (Slightly reformatted.) by Guido van Rossum · 25 years ago
- eba24bb Fix PR#110 -- bad input ("====") for a2b_base64() caused it to call by Guido van Rossum · 25 years ago
- 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
- 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
- 7dbb48a Converted to new exception style (Jack) by Guido van Rossum · 27 years ago
- 5c159bd Plug memory leak (DECREF doc string properly after inserting in dict). by Guido van Rossum · 27 years ago
- 1243ae7 Allow '@' character as end of line padding in uuencode format. by Guido van Rossum · 27 years ago
- 5f4ce18 Renamed. by Roger E. Masse · 28 years ago
- 9c6ba5e Fix leak involving BuildValue("...O..."). by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- 485f2da Add unsigned char cast by Guido van Rossum · 29 years ago
- ba1de3b Fixed off-by-one error in rle-decode, and allow whitespace in base64 by Jack Jansen · 29 years ago
- 5d95797 Allow '@' for ' ' in uuencoded files. by Jack Jansen · 29 years ago
- 84bbc2e Added base64 support by Jack Jansen · 29 years ago
- 0223aa1 Obscure bugfix by Jack Jansen · 29 years ago
- eaeb1c8 Added missing 'leftchar' initializer. by Jack Jansen · 29 years ago
- 7278119 Helper module for uuencode and binhex coders by Jack Jansen · 29 years ago