Hello Pyhton Listees
I am trying to port some code to Windows that works fine under Linux. The offending line
is:
blk = fromstring(f_fi d.read(BLOCK_LE N), num_type).bytes wapped().astype (Float32).tostr ing()
The error I get is:
ValueError: string size must be a multiple of element size
Does anyone have an idea where the problem might be? BLOCK_LEN is specified in bytes
and num_type is Int32.
Thanks,
Daniel
I am trying to port some code to Windows that works fine under Linux. The offending line
is:
blk = fromstring(f_fi d.read(BLOCK_LE N), num_type).bytes wapped().astype (Float32).tostr ing()
The error I get is:
ValueError: string size must be a multiple of element size
Does anyone have an idea where the problem might be? BLOCK_LEN is specified in bytes
and num_type is Int32.
Thanks,
Daniel
Comment