When I try to execute the script bimbam.py this error comes out:

File "mmfparser \ bytereader.pyx", line 195, in mmfparser.bytereader.ByteReader.read (./mmfparser/bytereader.cpp:3093) OverflowError: Python

Lines in bytereader.pyx from 195 to 197:

cpdef read (self, int size = -1): cdef char * buf cdef size_t read_bytes

Lines 3092 to 3096 in bytereader.cpp:

if (values ​​[0]) {pyx_v_size = __Pyx_PyInt_As_int (values ​​[0]); if (unlikely ((__ pyx_v_size == (int) -1) && PyErr_Occurred ())) {__pyx_filename = __pyx_f [0]; __pyx_lineno = 195; __pyx_clineno = __LINE; goto __pyx_L3_error;}} else {__pyx_v_size = ((int) -1); }

https://onedrive.live.com/?cid=bc2c0be906a79340&id=BC2C0BE906A79340%2123325&authkey= ! AMftYeIShSuzmBk - link to anaconda-mode3 (all scripts and bimbam.py are there)

python v 2.7.10 (required)

cython 0.21.2

microsoft visual c ++ compiler for python

What to make that the error did not appear?

  • And how many bytes do you really want to read? (print the argument before the call) - avp
  • 5 110 571 bytes. - Bad Coder

0