Message76963
| Author |
amaury.forgeotdarc |
| Recipients |
amaury.forgeotdarc |
| Date |
2008年12月05日.01:36:52 |
| SpamBayes Score |
0.00044022713 |
| Marked as misclassified |
No |
| Message-id |
<1228441014.26.0.452490077476.issue4542@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
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; |
|
History
|
|---|
| 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: <1228441014.26.0.452490077476.issue4542@psf.upfronthosting.co.za> |
| 2008年12月05日 01:36:53 | amaury.forgeotdarc | link | issue4542 messages |
| 2008年12月05日 01:36:53 | amaury.forgeotdarc | create |
|