[Pyobjc-dev] iPython & PyObjC on Leopard
Brought to you by:
ronaldoussoren
|
From: Bill B. <bb...@ma...> - 2007-12-28 19:26:07
|
It turns out that the rather powerful iPython is easy to install on
Leopard:
sudo easy_install ipython
However, it has the odd behavior of showing the same method many times
upon hitting <tab>:
In [7]: x.objectAtIndex_
x.objectAtIndex_ x.objectAtIndex_ x.objectAtIndex_ x.objectAtIndex_
In [7]: type(x)
Out[7]: <objective-c class NSCFArray at 0x37adc0>
In [8]: x
Out[8]:
(
1,
2,
3,
4
)
Has anyone futzed with this?
b.bum
|