# HG changeset patch # User timeless # Date 1460323928 0 # Node ID 50d11dd8ac025e7b8edfac7a0ef62e080a877433 # Parent af2e00c85d0a303d920a8438f525356fc0e09ca1 py3: use multi-line import in test-wireproto.py The reason I did it is that I had a later commit that was adding to the list. diff -r af2e00c85d0a -r 50d11dd8ac02 tests/test-wireproto.py --- a/tests/test-wireproto.py Sun Apr 10 21:32:05 2016 +0000 +++ b/tests/test-wireproto.py Sun Apr 10 21:32:08 2016 +0000 @@ -1,8 +1,9 @@ from __future__ import absolute_import, print_function import StringIO - -from mercurial import wireproto +from mercurial import ( + wireproto, +) class proto(object): def __init__(self, args):