summaryrefslogtreecommitdiff
path: root/Modules/binascii.c
Commit message (Expand)AuthorAgeFilesLines
...
* Merged revisions 77528 via svnmerge fromAntoine Pitrou2010-01-161-2/+14
* Merged revisions 77506 via svnmerge fromAntoine Pitrou2010-01-151-1/+1
* #4542: On Windows, binascii.crc32 still accepted str as binary input.Amaury Forgeot d'Arc2008-12-051-1/+1
* Issue #4387: binascii now refuses to accept str as binary input.Martin v. Löwis2008-12-021-8/+8
* Fix #3651 various memory leaks when using the buffer interfaceBenjamin Peterson2008-08-271-0/+3
* Fix building binascii when not using the zlib's crc32 (build failure on Windo...Antoine Pitrou2008-08-151-1/+1
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-32/+128
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-2/+38
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+22
* Renamed PyString to PyBytesChristian Heimes2008-05-261-40/+40
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-3/+5
* Merge the table type change to save space on LP64 platforms from trunk r61875.Gregory P. Smith2008-03-251-53/+53
* Fix crash on 64-bit platformsNeal Norwitz2008-03-241-1/+1
* Merged revisions 61820-61823 via svnmerge fromChristian Heimes2008-03-241-0/+18
* crc32 always returns unsigned. cleanup the code a bit and revert r61648 withGregory P. Smith2008-03-201-20/+8
* Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,...Christian Heimes2008-03-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-40/+40
* Remove unused variable.Guido van Rossum2007-08-231-1/+1
* Use a newer API for creating the module so we don't have to createNeal Norwitz2007-08-231-4/+1
* Remove unused code.Walter Dörwald2007-06-111-4/+0
* Make test_base64 pass.Guido van Rossum2007-05-221-3/+3
* Make binascii use byte strings everywhere (in and out).Guido van Rossum2007-05-221-47/+71
* Forwardport checkin:Walter Dörwald2007-05-091-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-4/+8
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-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