Deleted a few variables that shouldn't have been exported.

This commit is contained in:
Jeremy Fincher 2003-10-04 12:29:58 +00:00
parent f5807381a9
commit 71fcfb8db9
5 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,7 @@ from baseplugin import *
import time
import getopt
import string
import os.path
import sqlite

View File

@ -39,6 +39,7 @@ import re
import new
import math
import cmath
import string
from itertools import imap
import unum.units

View File

@ -45,6 +45,7 @@ import sets
import time
import shlex
import getopt
import string
import inspect
import textwrap
import threading

View File

@ -37,6 +37,7 @@ Fixes stuff that Python should have but doesn't.
import string
string.ascii = string.maketrans('', '')
del string
def ignore(*args, **kwargs):
"""Simply ignore the arguments sent to it."""
@ -69,6 +70,7 @@ def ilen(iterator):
i += 1
return i
itertools.ilen = ilen
del itertools
del ilen
def group(seq, groupSize, noneFill=True):

View File

@ -39,6 +39,7 @@ object (which, as you'll read later, is quite...full-featured :))
from fix import *
import re
import string
import debug
import ircutils