Re: [Pyobjc-dev] NSSearchPathForDirectoriesInDomains doesn't recognize YES
Brought to you by:
ronaldoussoren
From: Ronald O. <ous...@ci...> - 2003-02-06 21:59:29
|
On Thursday, Feb 6, 2003, at 22:21 Europe/Amsterdam, Martina Oefelein wrote: > > I assume the problem that NSCFArray doesn't get printed as a list is a > temporary problem caused by the recent changes in the bridging? Not really. This is caused by __repr__ returning the text your seeing instead of the result of self.description(). We do that because the interpreter may crash when calling description for uninitialized objects (the result of SomeClass.alloc()). This may be changed in the future (now that we can detect uninitialized objects). Ronald |