[Pythonmac-SIG] Leopard + Numpy + Scipy: Path Issues Remain

2008-01-09 Thread newbie73
I've been reading about the python path issues with Leopard and have tried the different methods outlined for addressing this problem with no good result. Currently I am using a combination of .pth files and a modification to my ~/.profile. One nagging problem is that SUDO commands do not mainta

[Pythonmac-SIG] How can I make Leo play with Tiger?

2008-01-09 Thread Edward Hartley
From: Kevin Walzer <[EMAIL PROTECTED]> Date: 8 January 2008 16:50:29 GMT To: Felicia Betancourt <[EMAIL PROTECTED]> Cc: pythonmac-sig@python.org Subject: Re: [Pythonmac-SIG] How can I make Leo play with Tiger? Reply-To: [EMAIL PROTECTED] Felicia Betancourt wrote: I just downloaded the latest ve

[Pythonmac-SIG] py2app 0.4.2 recipe errors

2008-01-09 Thread michael ferraro
after doing svn checkout of py2app/trunk svn co http://svn.pythonmac.org/py2app/py2app/trunk/ python setup.py install i get these errors byte-compiling build/bdist.macosx-10.5-ppc/egg/py2app/recipes/sip.py to sip.pyc File "build/bdist.macosx-10.5-ppc/egg/py2app/recipes/si

[Pythonmac-SIG] creating PyObjC wrapper for ObjC framework?

2008-01-09 Thread has
Hi all, I'm trying to create a PyObjC wrapper for objc-appscript, and I'm wondering how to wrap methods that have NSError** arguments, e.g.: @interface AEMEvent : NSObject { ... } ... /* * Send event. * Parameters * * sendMode *kAEWaitReply * * timeoutInTicks *

[Pythonmac-SIG] ZODB with py2app

2008-01-09 Thread Kenneth Miller
Hi All, I'm trying to build a Mac .app using py2app with python code that uses ZODB, can anyone give me some help, or maybe an example? Regards, Ken ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/py

[Pythonmac-SIG] building a Python app: syntax error

2008-01-09 Thread Nolan Schreiber
I have been to a couple of sites and cannot find a fix for a syntax error I keep coming up with while attempting to make a stand-alone executable out of some Python script I have written on my mac OS X. following the guidelines at http://svn.pythonmac.org/py2app/py2app/ trunk/doc/index.html#cr

Re: [Pythonmac-SIG] py2app 0.4.2 recipe errors

2008-01-09 Thread Ronald Oussoren
It should work again Ronald On 9 Jan, 2008, at 18:04, michael ferraro wrote: after doing svn checkout of py2app/trunk svn co http://svn.pythonmac.org/py2app/py2app/trunk/ python setup.py install i get these errors byte-compiling build/bdist.macosx-10.5-ppc/egg/py2app/reci

Re: [Pythonmac-SIG] creating PyObjC wrapper for ObjC framework?

2008-01-09 Thread Ronald Oussoren
On 9 Jan, 2008, at 18:49, has wrote: Hi all, I'm trying to create a PyObjC wrapper for objc-appscript, Why? and I'm wondering how to wrap methods that have NSError** arguments, e.g.: The easiest way is to mark the arguments as 'out' in the Objective-C prototype (and then recompile), th