summaryrefslogtreecommitdiffstats
path: root/Modules/binascii.c
Commit message (Expand)AuthorAgeFilesLines
* Backport checkin:Walter Dörwald2007-05-091-1/+1
* Patch #1185447: binascii.b2a_qp() now correctly quotes binary charactersGeorg Brandl2007-03-131-4/+8
* Bug #1588217: don't parse "= " as a soft line break in binascii'sGeorg Brandl2006-11-161-2/+1
* Make binascii.hexlify() use s# for its arguments instead of t# to actuallyBrett Cannon2006-06-081-1/+1
* Correct some value converting strangenesses.Georg Brandl2006-05-291-1/+1
* Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints.Thomas Wouters2006-03-011-2/+2
* Fix brainfart.Thomas Wouters2006-03-011-1/+1
* Make Py_ssize_t-clean.Thomas Wouters2006-03-011-17/+18
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+3
* Remove redunandant assertions from last checkin.Raymond Hettinger2004-09-061-9/+0
* SF #1022953: binascii.a2b_hqx("") raises SystemErrorRaymond Hettinger2004-09-061-5/+16
* Switch arguments to memset (kudos to MSVC C4318 for finding that)Martin v. Löwis2004-07-271-2/+2
* Valgrind was reporting an uninitialized read for bad input.Neal Norwitz2004-06-061-1/+2
* In order to fix SF bug # 824977, we replace calloc()/free() calls inBarry Warsaw2004-05-111-9/+16
* binascii_a2b_base64: Properly return an empty string if the input was allThomas Wouters2003-03-171-1/+8
* base64.decodestring('') should return '' instead of raising anBarry Warsaw2002-08-151-5/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Another stab at SF 576327: zipfile when sizeof(long) == 8Tim Peters2002-07-021-100/+106
* Fix for SF bug #576327: zipfile when sizeof(long) == 8Tim Peters2002-07-021-1/+11
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-20/+20
* SF bug #494738: binascii_b2a_base64 overwrites memory.Tim Peters2001-12-191-3/+5
* Change the limit on the input size for b2a_base64 to what will fit inGuido van Rossum2001-10-301-1/+3
* Add various typecasts (back and forth from char * to unsigned char *)Greg Ward2001-10-041-5/+5
* Patch #462190, patch #464070: Support quoted printable in the binascii module.Martin v. Löwis2001-09-301-0/+296
* This closes bug #430849 (internal error produced by binascii.a2b_base64)Peter Schneider-Kamp2001-06-071-0/+4
* Address a bug in the uuencode decoder, reported bu "donut" in SF bugGuido van Rossum2001-01-091-3/+3
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-16/+0
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+1
* binascii_unhexlify(): Better error message, courtesy effbot.Barry Warsaw2000-08-151-5/+5
* After a brief conversation and code review with TP, adding two veryBarry Warsaw2000-08-151-22/+126
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-13/+20
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-34/+11
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-10/+10
* Patch by Jim Ahlstrom to add crc32, a useful checksum functionGuido van Rossum2000-02-161-0/+141
* Patch by Jason Trowbridge. (Followup to his PR#110.) (SlightlyGuido van Rossum1999-10-191-18/+69
* Fix PR#110 -- bad input ("====") for a2b_base64() caused it to callGuido van Rossum1999-10-191-0/+2
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Use the t# format where appropriate. Greg Stein.Guido van Rossum1998-10-081-3/+3
* Converted to new exception style (Jack)Guido van Rossum1997-10-081-6/+2
* Plug memory leak (DECREF doc string properly after inserting in dict).Guido van Rossum1997-08-041-0/+1
* Allow '@' character as end of line padding in uuencode format.Guido van Rossum1997-07-111-1/+3
* Renamed.Roger E. Masse1997-01-161-79/+88
* Fix leak involving BuildValue("...O...").Guido van Rossum1997-01-121-3/+7
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Add unsigned char castGuido van Rossum1996-02-251-1/+1
* Fixed off-by-one error in rle-decode, and allow whitespace in base64Jack Jansen1996-01-221-5/+5