This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2008年12月05日 01:36 by amaury.forgeotdarc, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg76963 - (view) | Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) | Date: 2008年12月05日 01:36 | |
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; |
|||
| msg76964 - (view) | Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) | Date: 2008年12月05日 01:42 | |
Fixed in r67541 (py3k) and r67542 (release30-maint) |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:42 | admin | set | github: 48792 |
| 2008年12月05日 01:44:06 | amaury.forgeotdarc | link | issue4514 superseder |
| 2008年12月05日 01:42:16 | amaury.forgeotdarc | set | status: open -> closed resolution: fixed messages: + msg76964 |
| 2008年12月05日 01:36:53 | amaury.forgeotdarc | create | |