Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-16 Thread Bob Ippolito
On Jun 16, 2006, at 12:21 AM, Ronald Oussoren wrote: > > On 15-jun-2006, at 23:21, Bob Ippolito wrote: > >> >> On Jun 15, 2006, at 2:12 PM, Bob Ippolito wrote: >> >>> FWIW, this isn't at all Mac OS X specific.. >>> >>> $ uname -rs && pwd && ./python -c "import sys; print sys.path" >>> FreeBSD 6.0

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-16 Thread Ronald Oussoren
On 15-jun-2006, at 23:21, Bob Ippolito wrote: > > On Jun 15, 2006, at 2:12 PM, Bob Ippolito wrote: > >> FWIW, this isn't at all Mac OS X specific.. >> >> $ uname -rs && pwd && ./python -c "import sys; print sys.path" >> FreeBSD 6.0-RELEASE >> /usr/home/bob/src/python/:colon >> 'import site' faile

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-16 Thread Ronald Oussoren
On Wednesday, June 14, 2006, at 05:18PM, Bob Ippolito <[EMAIL PROTECTED]> wrote: >python itself needs to be in a directory containing a colon. > >bump:~/src/python/:colon bob$ ./python.exe -c "import sys; print >sys.path" >'import site' failed; use -v for traceback >['', '/usr/local/lib/python

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-15 Thread Bob Ippolito
On Jun 15, 2006, at 2:12 PM, Bob Ippolito wrote: > FWIW, this isn't at all Mac OS X specific.. > > $ uname -rs && pwd && ./python -c "import sys; print sys.path" > FreeBSD 6.0-RELEASE > /usr/home/bob/src/python/:colon > 'import site' failed; use -v for traceback > ['', '/usr/local/lib/python25.zi

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-15 Thread Bob Ippolito
FWIW, this isn't at all Mac OS X specific.. $ uname -rs && pwd && ./python -c "import sys; print sys.path" FreeBSD 6.0-RELEASE /usr/home/bob/src/python/:colon 'import site' failed; use -v for traceback ['', '/usr/local/lib/python25.zip', '/usr/home/bob/src/python/', 'colon/../Lib/', '/usr/home/b

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-14 Thread Bob Ippolito
python itself needs to be in a directory containing a colon. bump:~/src/python/:colon bob$ ./python.exe -c "import sys; print sys.path" 'import site' failed; use -v for traceback ['', '/usr/local/lib/python25.zip', '/Users/bob/src/python/', 'colon/../Lib/', '/Users/bob/src/python/', 'colon/../

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-14 Thread Ronald Oussoren
Could either of you file a bug about this (the sys.path mangling when there's a colon in the directory that contains the executable) on python's SF tracker? Preferably including decription of how to reproduce this. Bob, I've created a directory 'test:dir' and added a script named 'test.py' in

Re: [Pythonmac-SIG] py2app crash if path contains a colon

2006-06-14 Thread Bob Ippolito
On Jun 12, 2006, at 4:52 PM, Bob Swerdlow wrote: > Hi, our app is using py2app 0.2.1 and we've been quite happy with it - > thanks! > > However, we have found that it crashes if the application is > started in a > folder whose name contains a colon. Of course, the Finder does not > allow > th

[Pythonmac-SIG] py2app crash if path contains a colon

2006-06-13 Thread Bob Swerdlow
Hi, our app is using py2app 0.2.1 and we've been quite happy with it - thanks! However, we have found that it crashes if the application is started in a folder whose name contains a colon. Of course, the Finder does not allow the user to use a colon in file names, but other applications do. A