On 1/23/2008 1:28 AM, Mary Stern wrote: > Hello, > > I'm using PyINstaller to good effect on Windows and Linux. > It works fine some of the time, but it also often fails > with the same problem. The problem is that an import fails > (various random ones) intermittently. So sometimes it seems > to unpack and run fine, and other times it doesn't unpack > and run properly. > > My guess is that there's some timing issue here which means > that a file is trying to be imported before it's unpacked > properly. Is this possible?
I've seen this myself many times. It's surely a timing issue, which makes it hard to debug. Nonetheless, I found out that if you run a PyInstaller executable under wine, the error is always triggered. Thus, I was planning to debug it by having a windows and a linux machine next to each other (you need windows to rebuild the package and linux to run it under wine). In fact, it's just a matter of having spare time for that. -- Giovanni Bajo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
