Daniel Diniz <[EMAIL PROTECTED]> writes: > > Erm, skip that. I followed wx.lib.plot and Numeric is to blame. > > import Numeric > does the trick. Digging further... > > Daniel >
And import pickle (present in Numeric) is enough to cause the same error. Since we have "from types import *" in pickle.py, it might be that ctypes is actually involved in the problem. Gotta get some sleep :) Daniel P.S.: Some warnings that only appear after the patch and importing pickle W: no module named ctypes.c_ulong (delayed import by ctypes.decorators) W: no module named ctypes.sizeof (delayed import by ctypes.decorators) W: no module named ctypes.create_string_buffer (delayed import by ctypes.decorators) W: no module named ctypes.c_char (delayed import by ctypes.decorators) W: no module named ctypes.c_int (delayed import by ctypes.decorators) W: no module named ctypes.windll (top-level import by pyreadline.keysyms) W: no module named pwd (delayed, conditional import by posixpath) W: no module named ctypes.WinError (delayed, conditional import by ctypes.decorators) W: no module named org (top-level import by pickle) _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
