From: Alec B. <wry...@gm...> - 2007-03-07 20:16:46
|
It seems that including the bitmapcanvas component in a program compiled with PyInstaller causes PyInstaller to crash. I posted to the PyInstaller list but no one had any ideas, so I thought I'd ask this list. Here's a simple script that shows the error. It works fine uncompiled, but when compiled (even using the latest Trunk version of PyInstaller) it crashes. If I comment out the bitmapcanvas line, all works fine both compiled and uncompiled. I uploaded the compiled version of this to http://wrybread.com/dropbox/test.zip. And the script I'm using to compile is: Anyway, here's the script: ######################################################### # this line will cause the compiled app to crash: from PythonCard.components import statictext, bitmapcanvas # this line works fine: #from PythonCard.components import statictext import time while True: print time.time() time.sleep(.5) |