Mercurial > hgsubversion
changeset 492:50d77547c218
test_util: sort imports
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 15 Sep 2009 22:34:53 -0400 |
parents | b71507d7becc |
children | 41c333473dda |
files | tests/test_util.py |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test_util.py +++ b/tests/test_util.py @@ -1,27 +1,27 @@ -import gettext +import StringIO import errno +import gettext import imp import os -import subprocess import shutil -import StringIO import stat +import subprocess +import sys import tempfile import unittest import urllib import __init__ -from mercurial import context from mercurial import commands +from mercurial import context from mercurial import hg +from mercurial import i18n from mercurial import node from mercurial import ui -from mercurial import i18n from hgsubversion import util -import sys # Documentation for Subprocess.Popen() says: # "Note that on Windows, you cannot set close_fds to true and # also redirect the standard handles by setting stdin, stdout or