##// END OF EJS Templates
remove various unused import
Benoit Boissinot -
r3963:ba450418 default
parent child Browse files
Show More
@@ -11,7 +11,7 b''
11 11 #
12 12 # <alias email> <actual email>
13 13
14 import time, sys, signal, os
14 import sys
15 15 from mercurial.i18n import gettext as _
16 16 from mercurial import hg, mdiff, cmdutil, ui, util, templater, node
17 17
@@ -5,7 +5,7 b''
5 5 # This software may be used and distributed according to the terms
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 import time, sys, signal, os
8 import sys, os
9 9 from mercurial import hg, fancyopts, commands, ui, util, patch, revlog
10 10
11 11 def difftree(ui, repo, node1=None, node2=None, *files, **opts):
@@ -31,7 +31,7 b' refresh contents of top applied patch '
31 31
32 32 from mercurial.i18n import _
33 33 from mercurial import commands, cmdutil, hg, patch, revlog, util, changegroup
34 import os, sys, re, struct, traceback, errno, bz2
34 import os, sys, re, errno
35 35
36 36 commands.norepo += " qclone qversion"
37 37
@@ -63,7 +63,7 b''
63 63 #
64 64 # That should be all. Now your patchbomb is on its way out.
65 65
66 import os, errno, popen2, socket, sys, tempfile, time
66 import os, errno, socket, time
67 67 import email.MIMEMultipart, email.MIMEText, email.Utils
68 68 from mercurial import cmdutil, commands, hg, mail, ui, patch
69 69 from mercurial.i18n import _
@@ -6,7 +6,7 b''
6 6 # This software may be used and distributed according to the terms
7 7 # of the GNU General Public License, incorporated herein by reference.
8 8
9 import socket, sys, cgi, os, errno
9 import socket, cgi, errno
10 10 from mercurial.i18n import gettext as _
11 11
12 12 class wsgiapplication(object):
@@ -6,7 +6,7 b''
6 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 8 from i18n import _
9 import os, re, smtplib, templater, util
9 import os, smtplib, templater, util
10 10
11 11 def _smtp(ui):
12 12 '''send mail using smtp.'''
@@ -8,7 +8,7 b''
8 8 from i18n import _
9 9 from node import *
10 10 import base85, cmdutil, mdiff, util
11 import cStringIO, email.Parser, errno, os, popen2, re, shutil, sha
11 import cStringIO, email.Parser, os, popen2, re, sha
12 12 import sys, tempfile, zlib
13 13
14 14 # helper functions
General Comments 0
You need to be logged in to leave comments. Login now