-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
24 lines (18 loc) · 889 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
IRC: A general purpose IRC interface for Python
IRC is based heavily on the Bunbot of Alan Bunbury (bunburya), available freely
from GitHub (https://github.com/bunburya/bunbot). The code was fetched on
26 November 2011, and may now be different. This code may, at the author's
discretion, be rebased on a newer version of Bunbot; this will be duly noted.
However, this IRC interface contains a much greater amount of features than
Bunbury's, and often provides simpler handling than Twisted.
The changes below are not mentioned in the Git log:
* Random coding style changes
* Generalization of bot.Bot()
* A few docstring additions
* Cross-version Python compatibility
--------------------------------------------------------------------------------
Copyright 2012-2013 by Daniel Foerster <[email protected]> and
redistributable under the LGPL.
"""
__version__ = '0.3.0'