##// END OF EJS Templates
removed unused imports
Martin Geisler -
r8656:284fda4c default
parent child Browse files
Show More
@@ -1,6 +1,5 b''
1 1 # perf.py - performance test routines
2 2
3 from mercurial.i18n import _
4 3 from mercurial import cmdutil, match, commands
5 4 import time, os, sys
6 5
@@ -8,7 +8,7 b''
8 8 import base64, errno
9 9 import os
10 10 import cPickle as pickle
11 from mercurial import util, strutil
11 from mercurial import util
12 12 from mercurial.i18n import _
13 13
14 14 def encodeargs(args):
@@ -13,7 +13,7 b''
13 13
14 14 from mercurial.i18n import _
15 15 from mercurial import cmdutil, util
16 import os, server
16 import server
17 17 from weakref import proxy
18 18 from client import client, QueryFailed
19 19
@@ -6,7 +6,7 b''
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 8 from i18n import _
9 import errno, getpass, os, re, socket, sys, tempfile, traceback
9 import errno, getpass, os, socket, sys, tempfile, traceback
10 10 import config, util, error
11 11
12 12 _booleans = {'1': True, 'yes': True, 'true': True, 'on': True,
@@ -16,9 +16,8 b' used.'
16 16 import win32api
17 17
18 18 import errno, os, sys, pywintypes, win32con, win32file, win32process
19 import cStringIO, winerror
19 import winerror
20 20 import osutil, encoding
21 import util
22 21 from win32com.shell import shell,shellcon
23 22
24 23 class WinError(Exception):
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2
3 import sys, struct
3 import struct
4 4 from mercurial import bdiff, mpatch
5 5
6 6 def test1(a, b):
@@ -1,6 +1,5 b''
1 1 import os
2 2 from mercurial import hg, ui, merge
3 from hgext import graphlog
4 3
5 4 u = ui.ui()
6 5
@@ -1,6 +1,6 b''
1 1 #!/usr/bin/env python
2 2
3 from mercurial import ui, util, dispatch, error
3 from mercurial import ui, dispatch, error
4 4
5 5 testui = ui.ui()
6 6 parsed = dispatch._parseconfig(testui, [
@@ -1,5 +1,4 b''
1 1 import os
2 import os.path
3 2 from mercurial import hg, ui
4 3 from mercurial.util import walkrepos
5 4 from os import mkdir, chdir
General Comments 0
You need to be logged in to leave comments. Login now