# HG changeset patch # User Yuya Nishihara # Date 2016-04-05 14:23:43 # Node ID e155b8d5e3b72773966edc54e22308552979b95a # Parent 8717d4609ab326def01489f512a77512f7881233 tests: move stdlib imports before mercurial modules in test-parseindex2 diff --git a/tests/test-parseindex2.py b/tests/test-parseindex2.py --- a/tests/test-parseindex2.py +++ b/tests/test-parseindex2.py @@ -4,6 +4,11 @@ It also checks certain aspects of the pa """ from __future__ import absolute_import, print_function + +import struct +import subprocess +import sys + from mercurial import ( parsers, ) @@ -11,9 +16,6 @@ from mercurial.node import ( nullid, nullrev, ) -import struct -import subprocess -import sys # original python implementation def gettype(q):