Nat Picker
Nat Picker
Just a drive-by reader. I'm working on a "card" module of my own and snooping all the others.
Actually if you `pip install --upgrade PyInstaller` and graph it? It's a very pretty graph, although it is way big.
Can confirm. PyInstaller 3.1.1, Python 3.4.3, Mac OS 10.10.5 (Yosemite). The following code, ``` #!/usr/bin/python3 import sys, os frozen = 'not' if getattr(sys, 'frozen', False): # we are running in...
Further info: if I change the `file()` call to read ``` file = open( os.path.join( "/tmp", "file" ) ,"wb" ) ``` Then the program works, no crash. In the label...
your example said `file('file','wb')` -- are you saying it fails when you call `file()` for a complete path starting with slash?
Sorry, i mean `open('file','wb')`
Well, ``` $ python Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 23 2015, 02:52:03) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information....
FYI when I applied the above quick'n'dirty fix, the program attempted to open out00-PYZ.pyz within an .exe and this resulted in a RunTimeError in the checkmagic() method of pyi_carchive.CArchive(). This...
I will open a separate issue for this.
Testing with Python 3.4 and PyInstaller 3.2, I get this behavior *sometimes* but not always. The first, 3rd and 6th times I executed `open dist/kbtest` I got this in the...