Added __revision__ strings.

This commit is contained in:
Jeremy Fincher 2003-11-25 17:33:58 +00:00
parent c151c77b99
commit d7dfff7f1e
6 changed files with 18 additions and 0 deletions

View File

@ -34,6 +34,10 @@ Basic channel management commands. Many of these commands require their caller
to have the <channel>.op capability. This plugin is loaded by default. to have the <channel>.op capability. This plugin is loaded by default.
""" """
__revision__ = "$Id$"
import fix
import time import time
from itertools import imap from itertools import imap

View File

@ -33,6 +33,10 @@
Provides commands useful to users in general. This plugin is loaded by default. Provides commands useful to users in general. This plugin is loaded by default.
""" """
__revision__ = "$Id$"
import fix
import getopt import getopt
import string import string

View File

@ -33,6 +33,8 @@
Fixes stuff that Python should have but doesn't. Fixes stuff that Python should have but doesn't.
""" """
__revision__ = "$Id$"
__all__ = [] __all__ = []
exported = ['ignore', 'catch', 'reviter', 'window', 'group', exported = ['ignore', 'catch', 'reviter', 'window', 'group',

View File

@ -31,6 +31,8 @@
"""Handles interactive questions; useful for wizards and whatnot.""" """Handles interactive questions; useful for wizards and whatnot."""
__revision__ = "$Id$"
import textwrap import textwrap
from getpass import getpass as getPass from getpass import getpass as getPass

View File

@ -31,6 +31,10 @@
"""Old REPL from back in the day. Deprecated.""" """Old REPL from back in the day. Deprecated."""
__revision__ = "$Id$"
import fix
import sys import sys
import traceback import traceback
from cStringIO import StringIO from cStringIO import StringIO

View File

@ -34,6 +34,8 @@ This is the template for bots. supybot-wizard uses this file to make
customized startup files for bots. customized startup files for bots.
""" """
__revision__ = "$Id$"
import re import re
import os import os
import sys import sys