Message76963
issue #4387 (67472) changed binascii and added tests, but the windows
specific implementation was not changed. Change is trivial:
Index: Modules/binascii.c
===================================================================
--- Modules/binascii.c (revision 67538)
+++ Modules/binascii.c (working copy)
@@ -1019,7 +1019,7 @@
Py_ssize_t len;
unsigned int result;
- if ( !PyArg_ParseTuple(args, "s*|I:crc32", &pbin, &crc) )
+ if ( !PyArg_ParseTuple(args, "y*|I:crc32", &pbin, &crc) )
return NULL;
bin_data = pbin.buf;
len = pbin.len; |
|
| Date |
User |
Action |
Args |
| 2008-12-05 01:36:54 | amaury.forgeotdarc | set | recipients:
+ amaury.forgeotdarc |
| 2008-12-05 01:36:54 | amaury.forgeotdarc | set | messageid: <[email protected]> |
| 2008-12-05 01:36:53 | amaury.forgeotdarc | link | issue4542 messages |
| 2008-12-05 01:36:53 | amaury.forgeotdarc | create | |
|