Hi. I have Ubuntu 9.04 and Komodo IDE 5.1.3 build 28369 for 32 bit intel dual core. CallTips for both synaptic installed pyglet 1.1.2 and manually installed pygley 1.1.3 do not work. Also, adding the pyglet source directories to Additional Python Import Directories in Preferences does not help.
IDLE can detect pyglet fine, in case you are wondering.
Pyglet can be found here: http://www.pyglet.org/
I would appreciate it if someone could help me get CallTips to work, because that would dramatically improve my workflow.
Thanks
I would imagine that most of the pyglet Python modules are actually C-modules (compiled Python modules) that Komodo will not be able to infer code-intelligence to.
Under such circumstances, Komodo relies on API catalogs to be able to add additional codeintel information for these missing parts. You can try generating an API catalog for Pyglet automatically, similar to the way PyQt is generated:
http://community.activestate.com/forum/komodo-python-qt-and-pyqt-catalog...
or you can write a tool to generate an API catalog from the Pyglet API documentation, similar to the how some of the Komodo JavaScript API catalogs are generated:
http://svn.openkomodo.com/openkomodo/view/openkomodo/trunk/src/codeintel...
Cheers,
Todd
Thanks I'll give that a try.