Re: [Pyobjc-dev] Re: Pyobjc-dev digest, Vol 1 #373 - 3 msgs
Brought to you by:
ronaldoussoren
From: Ronald O. <ous...@ci...> - 2003-10-06 17:09:50
|
On 6 okt 2003, at 16:17, Gary Robinson wrote: >>> I thought this was interesting. too bad GnuStep's PyObjC connection >>> is >>> languishing or it might have provided a quicker path to x-platform. >> >> All it needs is a maintainer, feel free to volunteer ;) > > I wish we had the bandwidth to take it on!!!! But we're just flat-out > against the wall trying to get done the stuff we absolutely must get > done > ASAP. I am, very slowly, working on a GNUstep port. The lack of usefull documentation on the GNU runtime isn't helpfull :-). I'll start checking in after the release of PyObjC 1.0. The script below now works, but the unittests still cause many, many crashes. import objc class Foo (objc.runtime.NSObject): def init(self): print "hello" return self def description(self): return "foo" print Foo.alloc().init() BTW. there's two reasons I'm working on a GNUstep port, the first is the coolness factor and the second is improving the quality of the MacOSX port by exposing the bridge to slightly different conditions. BTW2. my Linux box is headless, and I won't install X11 on it. This means someone else will have to port the AppKit wrappers. That will be pretty easy once the core code works. Ronald |