Message85043
While the behavior cannot be reproduced in the trunk, in can be
reproduced in the 2.6 release:
$ python -W ignore
Python 2.6.1 (r261:67515, Dec 6 2008, 16:42:21)
[GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import struct
>>> struct.pack('L', 'foobar')
'\x00\x00\x00\x00'
>>> struct.pack('I', 'foobar')
'\x00\x00\x00\x00'
>>> struct.pack('i', 'foobar')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
struct.error: required argument is not an integer
>>> |
|
Date |
User |
Action |
Args |
2009-04-01 16:27:47 | vdupras | set | recipients:
+ vdupras, theller, mark.dickinson, ajaksu2 |
2009-04-01 16:27:46 | vdupras | set | messageid: <1238603266.45.0.356303815814.issue1741130@psf.upfronthosting.co.za> |
2009-04-01 16:27:45 | vdupras | link | issue1741130 messages |
2009-04-01 16:27:44 | vdupras | create | |
|