- d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 6 years ago
- 1fba2ff bpo-34736: improve error message for invalid length b64decode inputs (GH-9563) by Tal Einat · 6 years ago
- 1b85c71 bpo-33770: improve base64 exception message for encoded inputs of invalid length (#7416) by Tal Einat · 6 years ago
- 6b5df90 bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586) by Sergey Fedoseev · 7 years ago
- 679b566 bpo-9566: Fix some Windows x64 compiler warnings (#2492) by Segev Finer · 7 years ago
- 13f1f42 bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (#1326) by Xiang Zhang · 8 years ago
- 1374dbb restore *data* parameter of binascii.b2a_base64 to positional-only (#1352) by Xiang Zhang · 8 years ago
- 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 8 years ago
- 520569e Issue #29004: Merge crc_hqx() doc from 3.5 by Martin Panter · 8 years ago
- 3310e14 Issue #29004: Document binascii.crc_hqx() implements CRC-CCITT by Martin Panter · 8 years ago
- 62a1f02 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
- e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). by Serhiy Storchaka · 8 years ago
- 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
- b6f78c2 merge 3.5 (closes #27760) by Benjamin Peterson · 8 years ago
- 91060f2 merge 3.4 (closes #27760) by Benjamin Peterson · 8 years ago
- 5295532 merge 3.3 (closes #27760) by Benjamin Peterson · 8 years ago
- 4f97651 fix possible integer overflow in binascii.b2a_qp (closes #27760) by Benjamin Peterson · 8 years ago
- 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
- ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
- 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
- f9c9a3f Refactor binascii.rledecode_hqx() by Victor Stinner · 9 years ago
- 1bfe930 Issue #25384: Fix binascii.rledecode_hqx() by Victor Stinner · 9 years ago
- eaaaf13 Issue #25384: Use _PyBytesWriter API in binascii by Victor Stinner · 9 years ago
- e84c976 Issue #25357: Add an optional newline paramer to binascii.b2a_base64(). by Victor Stinner · 9 years ago
- 9c6b916 Switch binascii over to using the common _Py_strhex implementation for its hex by Gregory P. Smith · 10 years ago
- e3037e1 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 10 years ago
- 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 10 years ago
- 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 10 years ago
- 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 10 years ago
- 3cd30c2 Issue #13637: Improve exception message of a2b_* functions. by Berker Peksag · 10 years ago
- b176d40 Issue #23280: Fix docstrings for binascii.(un)hexlify by Zachary Ware · 10 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- b62deac cleanup after custom buffer converter by Benjamin Peterson · 11 years ago
- f256c22 Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch). by Larry Hastings · 11 years ago
- 1278561 Fixed converting errors in the binascii module (issue20151). by Serhiy Storchaka · 11 years ago
- 3ffd913 Issue #20151: The binascii module now uses Argument Clinic. by Serhiy Storchaka · 11 years ago
- c3f57e4 Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
- 5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
- 7979926 Issue #18408: Fix usage of _PyBytes_Resize() by Victor Stinner · 11 years ago
- c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
- 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
- 0831676 Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. by Antoine Pitrou · 13 years ago
- f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
- ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
- 922e904 Fix issue10324 - Modules/binascii.c: simplify expressions by Senthil Kumaran · 14 years ago
- 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 14 years ago
- 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 14 years ago
- f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- 9f96ffc Remove duplicated line when merging (it was even valid C!). by Antoine Pitrou · 15 years ago
- 747e8b3 Merged revisions 77528 via svnmerge from by Antoine Pitrou · 15 years ago
- 2843aa8 Merged revisions 77506 via svnmerge from by Antoine Pitrou · 15 years ago
- bc9d474 #4542: On Windows, binascii.crc32 still accepted str as binary input. by Amaury Forgeot d'Arc · 16 years ago
- 15b16a3 Issue #4387: binascii now refuses to accept str as binary input. by Martin v. Löwis · 16 years ago
- 9edd2bd Fix #3651 various memory leaks when using the buffer interface by Benjamin Peterson · 16 years ago
- 34ed9f7 Fix building binascii when not using the zlib's crc32 (build failure on Windows buildbots) by Antoine Pitrou · 16 years ago
- 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
- 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 17 years ago
- 3c0e4d2 Merge the table type change to save space on LP64 platforms from trunk r61875. by Gregory P. Smith · 17 years ago
- 4027bf8 Fix crash on 64-bit platforms by Neal Norwitz · 17 years ago
- 1dc5400 Merged revisions 61820-61823 via svnmerge from by Christian Heimes · 17 years ago
- 2727503 crc32 always returns unsigned. cleanup the code a bit and revert r61648 with by Gregory P. Smith · 17 years ago
- 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 · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
- 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
- 1a0270f Remove unused code. by Walter Dörwald · 17 years ago
- 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
- 0e225aa Make binascii use byte strings everywhere (in and out). by Guido van Rossum · 17 years ago
- 0925e41 Forwardport checkin: by Walter Dörwald · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 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