Re: [Pythonmac-SIG] PyObjC

2009-02-10 Thread s s
On Feb 10, 2009, at 9:08 AM, Ronald Oussoren wrote: On 10 Feb, 2009, at 14:51, s s wrote: I could help out with the website. Is there somewhere to download the site as it currently exists? It's in the pyobjc-website module in the pyobjc repository. Found it. Looks like you'

Re: [Pythonmac-SIG] PyObjC

2009-02-10 Thread s s
I could help out with the website. Is there somewhere to download the site as it currently exists? Thanks, S On Feb 10, 2009, at 5:29 AM, Ronald Oussoren wrote: On 6 Feb, 2009, at 22:40, Jaromir Siska wrote: I would like to ask if anybody knows what is happening with PyObjC. Is the proje

Re: [Pythonmac-SIG] py2app - After building for distribution, No module named PyObjCTools

2009-02-08 Thread s s
I have had similar problems with the "ImportError: No module named PyObjCTools" and actually sent my entire project to someone who was distributing a (beta) commercial product for some help. He spent 4 hours on it, hacked the hell out of the startup modules and everything else and got it to

[Pythonmac-SIG] Building pyobjc

2009-01-22 Thread s s
Is there a way to rebuild pyobjc on Leopard using the XCode 3.1/gcc 4.01 tools? I have tried pulling the trunk and tagged r200-leopard builds of pyobjc from http://svn.red-bean.com/pyobjc and neither will build using the 02-develop-all.sh build file. There are lots of C compiler errors st

[Pythonmac-SIG] Py2app -- where is canonical repository, what version is current?

2009-01-13 Thread s s
I've been trying to figure out where the _real_ current Py2app is. Here's one source of confusion: The __init__.py in the py2app directory as distributed by Apple with Leopard contains: __version__ = "0.4.1" The __init__.py file, from the trunk of the repository at:

Re: [Pythonmac-SIG] Calling a python objc class method from cocoa

2008-10-18 Thread s s
Try using: def setdefaulttimeout_(cls,timeout): Since your method would be setdefaulttimeout: in objc, it's necessary to replace the ':' with an underscore in your Python code. S aka Steve Steiner On Oct 18, 2008, at 6:15 PM, Saptarshi Guha wrote: Hello, I have a mainly cocoa app