Re: [Pythonmac-SIG] machine architecture 32/64 with Python 2.6 on Snow Leopard?

2009-09-18 Thread Bill Janssen
I think I'm just going to put '32bit' or '64bit' in my installer name strings. Bill e...@apple.com wrote: > On Sep 18, 2009, at 5:05 PM, Bill Janssen wrote: > > > William Kyngesburye wrote: > > > >> If you run the CLI 'uname -m' on any Intel Mac, it always has > >> returned > >> i386. So all

Re: [Pythonmac-SIG] machine architecture 32/64 with Python 2.6 on Snow Leopard?

2009-09-18 Thread emoy
On Sep 18, 2009, at 5:05 PM, Bill Janssen wrote: William Kyngesburye wrote: If you run the CLI 'uname -m' on any Intel Mac, it always has returned i386. So all it really means is 'Intel'. On Sep 18, 2009, at 5:53 PM, Bill Janssen wrote: I'm running /usr/bin/python on SL, and import p

Re: [Pythonmac-SIG] machine architecture 32/64 with Python 2.6 on Snow Leopard?

2009-09-18 Thread Bill Janssen
William Kyngesburye wrote: > If you run the CLI 'uname -m' on any Intel Mac, it always has returned > i386. So all it really means is 'Intel'. > > On Sep 18, 2009, at 5:53 PM, Bill Janssen wrote: > > > I'm running /usr/bin/python on SL, and > > > >import platform; print platform.machine()

Re: [Pythonmac-SIG] machine architecture 32/64 with Python 2.6 on Snow Leopard?

2009-09-18 Thread William Kyngesburye
If you run the CLI 'uname -m' on any Intel Mac, it always has returned i386. So all it really means is 'Intel'. On Sep 18, 2009, at 5:53 PM, Bill Janssen wrote: I'm running /usr/bin/python on SL, and import platform; print platform.machine() give me i386 But Activity Monitor shows

[Pythonmac-SIG] machine architecture 32/64 with Python 2.6 on Snow Leopard?

2009-09-18 Thread Bill Janssen
I'm running /usr/bin/python on SL, and import platform; print platform.machine() give me i386 But Activity Monitor shows Python as "Intel (64-bit)". Is this a bug in platform.machine(), or am I misunderstanding what i386 means? "platform.architecture()" returns ('64bit', ''). Bill __

Re: [Pythonmac-SIG] py2app cannot move to target thread error

2009-09-18 Thread Christopher Barker
Scott Frankel wrote: Thanks for the info and sample code! I've now got libqsqlpsql.bundle copying to the app bundle's frameworks dir. Reading http://doc.trolltech.com/4.4/deployment-mac.html#linking-the-application-to-qt-as-frameworks, I'm knee deep in otool and install_name_tool. I had no

Re: [Pythonmac-SIG] Appscript and Snow Leopard and setuptools...

2009-09-18 Thread Bill Janssen
Ronald Oussoren wrote: > > Yes, that's part of the problem. The other part is that .pth handling > > seems to have changed from 2.5 to 2.6. > > That's news to me. I've been using zipped eggs with 2.6 without any > problems. Don't know that it had anything to do with eggs. What I was seeing wa

Re: [Pythonmac-SIG] Appscript and Snow Leopard and setuptools...

2009-09-18 Thread Bill Janssen
Ronald Oussoren wrote: > > On 17 Sep, 2009, at 23:50, Bill Janssen wrote: > > > Ronald Oussoren wrote: > > > >> Bill, > >> > >> Appscript probably gets installed as a zipped egg, the .python-eggs > >> directory gets created when a real filesystem path is needed for an > >> item in such an egg.