##// END OF EJS Templates
py3: use absolute_import in test-batching.py
Robert Stanca -
r28731:f8872b50 default
parent child Browse files
Show More
@@ -5,8 +5,15 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from mercurial.peer import localbatch, batchable, future
8 from __future__ import absolute_import
9 from mercurial.wireproto import remotebatch
9 from mercurial.peer import (
10 localbatch,
11 batchable,
12 future,
13 )
14 from mercurial.wireproto import (
15 remotebatch,
16 )
10
17
11 # equivalent of repo.repository
18 # equivalent of repo.repository
12 class thing(object):
19 class thing(object):
@@ -53,7 +53,6 b''
53 tests/svn-safe-append.py not using absolute_import
53 tests/svn-safe-append.py not using absolute_import
54 tests/svnxml.py not using absolute_import
54 tests/svnxml.py not using absolute_import
55 tests/test-atomictempfile.py not using absolute_import
55 tests/test-atomictempfile.py not using absolute_import
56 tests/test-batching.py not using absolute_import
57 tests/test-batching.py requires print_function
56 tests/test-batching.py requires print_function
58 tests/test-bdiff.py not using absolute_import
57 tests/test-bdiff.py not using absolute_import
59 tests/test-bdiff.py requires print_function
58 tests/test-bdiff.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now