Moved docstrings in plugin packages to __init__.py instead of plugin.py; no lazy "backwards compatibility" hack.

This commit is contained in:
Jeremy Fincher 2005-01-19 23:17:35 +00:00
parent 683c2c1018
commit 2c31235a3e
12 changed files with 27 additions and 27 deletions

View File

@ -27,6 +27,11 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
These are commands useful for administrating the bot; they all require their
caller to have the 'admin' capability. This plugin is loaded by default.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,11 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
These are commands useful for administrating the bot; they all require their
caller to have the 'admin' capability. This plugin is loaded by default.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,6 +27,11 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Basic channel management commands. Many of these commands require their caller
to have the <channel>.op capability. This plugin is loaded by default.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,11 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Basic channel management commands. Many of these commands require their caller
to have the <channel>.op capability. This plugin is loaded by default.
"""
import sys import sys
import time import time

View File

@ -27,6 +27,10 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Handles configuration of the bot while it is running.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,10 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Handles configuration of the bot while it is running.
"""
import os import os
import getopt import getopt
import signal import signal

View File

@ -27,6 +27,10 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Miscellaneous commands.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,10 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Miscellaneous commands.
"""
import supybot import supybot
import supybot.fix as fix import supybot.fix as fix

View File

@ -27,6 +27,11 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Provides commands useful to the owner of the bot; the commands here require
their caller to have the 'owner' capability. This plugin is loaded by default.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,11 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Provides commands useful to the owner of the bot; the commands here require
their caller to have the 'owner' capability. This plugin is loaded by default.
"""
import supybot.fix as fix import supybot.fix as fix
import gc import gc

View File

@ -27,6 +27,10 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Provides commands useful to users in general. This plugin is loaded by default.
"""
import supybot import supybot
__author__ = supybot.authors.jemfinch __author__ = supybot.authors.jemfinch

View File

@ -27,10 +27,6 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
"""
Provides commands useful to users in general. This plugin is loaded by default.
"""
import supybot.fix as fix import supybot.fix as fix
import re import re