mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Deleted a few variables that shouldn't have been exported.
This commit is contained in:
parent
f5807381a9
commit
71fcfb8db9
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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):
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user