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 time
import getopt import getopt
import string
import os.path import os.path
import sqlite import sqlite

View File

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

View File

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

View File

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