[Baypiggies] IRC bot framework

Tim Hatch tim at timhatch.com
Mon Dec 17 17:46:17 CET 2012


> The one thing that seems a little broken is pydoc:
> $ pydoc26 twisted.words.protocols.irc.IRCClient
> Help on class IRCClient in twisted.words.protocols.irc:
> 
> twisted.words.protocols.irc.IRCClient = <class
> twisted.words.protocols.irc.IRCClient>
>  
> If I look at the actual source, it looks like the docstrings are fine,
> but both pydoc and help(...) fail for the IRCClient class, and AFAICT,
> only the IRCClient class. Which is unfortunate, because that's the main
> class you need to work with in order to build an IRC client.

It's likely installed with only .pyo or something like that.  python -c
'import twisted.words.protocols.irc as i; print i.__file__' to confirm

Tim


More information about the Baypiggies mailing list