[Pythonmac-SIG] Is anyone getting strange bus errors with macports python 2.6?

2009-08-21 Thread Leonardo Santagada
This is the bug i've been getting: http://trac.macports.org/ticket/20286 Can anyone else confirm this, or maybe even better, have an idea on what is going on? -- Leonardo Santagada santagada at gmail.com ___ Pythonmac-SIG maillist - Pythonmac-

Re: [Pythonmac-SIG] Authentication via python?

2009-08-21 Thread Benjamin Schollnick
Folks, I know that I was able to use the Authorization module on 10.5, but I¹m testing this on Snow Leopard, and I¹m getting tons of errors when I attempt to install it on Snow Leopard Is there any updates to Authorization, or a better work around? - Benjamin On 10/28/08 5:45 PM,

Re: [Pythonmac-SIG] Is anyone getting strange bus errors with macports python 2.6?

2009-08-21 Thread Ned Deily
In article , Leonardo Santagada wrote: > This is the bug i've been getting: > > http://trac.macports.org/ticket/20286 > > Can anyone else confirm this, or maybe even better, have an idea on > what is going on? This may be a red herring, but since you mention mimetypes.py in the macports bug

[Pythonmac-SIG] Py2App for Python 2.6?

2009-08-21 Thread Benjamin Schollnick
Folks, It¹s been a long time, since I looked at Mac python bundlers And especially with Snow Leopard, what¹s the state of Py2App? Are there any other recommendations for making applications out Python scripts? I need to ensure support for Leopard, and Snow Leopard - Ben ___

Re: [Pythonmac-SIG] Py2App for Python 2.6?

2009-08-21 Thread Benjamin Schollnick
Okay, I see py2app has had some changes, but I can¹t seem to find more detail on the changes for setup.py file... I can¹t seem to get py2app to bundle up wxpython with the application... Setup.py: """ This is a setup.py script generated by py2applet Usage: python setup.py py2app """ from

Re: [Pythonmac-SIG] check if wxpython has been installed properly

2009-08-21 Thread Edward Moy
I seem to think that on Tiger, one needed to use pythonw to get GUI access (the regular python is just the plain command line tool, and the window server doesn't allow plain commands to access the GUI). This was changed in Leopard so that either python or pythonw worked. Ed On Aug 20, 200

Re: [Pythonmac-SIG] check if wxpython has been installed properly

2009-08-21 Thread Chris Barker
Edward Moy wrote: I seem to think that on Tiger, one needed to use pythonw to get GUI access (the regular python is just the plain command line tool, and the window server doesn't allow plain commands to access the GUI). This was changed in Leopard so that either python or pythonw worked. O

[Pythonmac-SIG] Using Finder to open app by id

2009-08-21 Thread Charles Miller
How can you run the following Applescript in py-appscript? I've tried everything I can think of. tell application "Finder" to open application file id "com.apple.Preview" Obviously, I just want to launch Preview from within py-appscript. I really want to do this in py-appscript as oppos

Re: [Pythonmac-SIG] Using Finder to open app by id

2009-08-21 Thread Ned Deily
In article , Charles Miller wrote: > How can you run the following Applescript in py-appscript? I've tried > everything I can think of. > > tell application "Finder" to open application file id > "com.apple.Preview" > > Obviously, I just want to launch Preview from within py-appscript. I