]> git.decadent.org.uk Git - dak.git/commitdiff
Remove unused imports from daklib.
authorChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 16:35:26 +0000 (16:35 +0000)
committerChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 16:35:26 +0000 (16:35 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/database.py
daklib/dbconn.py
daklib/queue.py
daklib/utils.py

index cbdfad04e5a4504f204210802bdc5efc9236a75f..dc950f581891277a8d941df3202e13361aa5381e 100755 (executable)
@@ -30,9 +30,6 @@
 
 ################################################################################
 
-import sys
-import time
-import types
 import utils
 import pg
 
index adecc38a7f060d6c9876be399e6d6b4df3fb3034..224935dd5883504a59c9d1b27f44175ce227e287 100755 (executable)
@@ -39,7 +39,7 @@ import traceback
 
 from inspect import getargspec
 
-from sqlalchemy import create_engine, Table, MetaData, select
+from sqlalchemy import create_engine, Table, MetaData
 from sqlalchemy.orm import sessionmaker, mapper, relation
 
 # Don't remove this, we re-export the exceptions to scripts which import us
index d70e60b190d35195434ca031e50435f10c8c0ff7..1ece0d1da139c4657843d42dc798b973aa4f0c68 100755 (executable)
@@ -26,7 +26,6 @@ Queue utility functions for dak
 
 ###############################################################################
 
-import cPickle
 import errno
 import os
 import pg
index 0420c68247164f2bfea2fa1aac41ce276c1f7b38..457e093c823cc30610e7eccde28880e2bfd5145d 100755 (executable)
@@ -22,7 +22,6 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-import codecs
 import commands
 import email.Header
 import os
@@ -46,8 +45,8 @@ from dak_exceptions import *
 from textutils import fix_maintainer
 from regexes import re_html_escaping, html_escaping, re_single_line_field, \
                     re_multi_line_field, re_srchasver, re_verwithext, \
-                    re_parse_maintainer, re_taint_free, re_gpg_uid, \
-                    re_re_mark, re_whitespace_comment, re_issource
+                    re_taint_free, re_gpg_uid, re_re_mark, \
+                    re_whitespace_comment, re_issource
 
 from srcformats import srcformats
 from collections import defaultdict