> I'm assuming that your script/application runs fine when not packaged by > PyInstaller? >
;) > Also, IMO, it's highly unlikely that there is a problem in the C standard > libs. Much more likely is that pyocc is passing junk to the vfprintf > function (for example, a NULL or uninitialized file pointer) > Aha... alright... > To track this down, you really need to write as short of a script as > possible that reproduces the problem; it looks like your app is reasonably > complex, and it will be neigh on impossible to separate out that > complexity. I know this is for wxPython, but the same concepts apply: > http://wiki.wxpython.org/MakingSampleApps > Absolutely... alas, that was what I've been doing, trying to go from compiling "print hello world" and now moving onto: print 'OCC test...' try: from OCC.BRepPrimAPI import BRepPrimAPI_MakeBox box = BRepPrimAPI_MakeBox(1,1,1).Shape() except ImportError: print "could not load OCC.BRepPrimAPI" print 'hope things played out...' So that's how I'm trying to approach this, its indeed a complex app, that's why going for the piecemeal approach... Thanks, -jelle -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
