jaraco / irc

Full-featured Python IRC library for Python.
MIT License
390 stars 84 forks source link

Functions Aren't Referenced? #151

Closed PenguinzPlays closed 5 years ago

PenguinzPlays commented 5 years ago

Trying to figure out how to work with your library... currently writing a chat bot. I see all of these "on_something" functions with no calls to them? How are they used? Can I rename them to fit the rest of the program?

jaraco commented 5 years ago

on_* are called when the server transmits an event by that name. So when the server sends WELCOME, on_welcome is called

jaraco commented 5 years ago

So no, I don't think you can rename them.