# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1460756063 -19800 # Node ID 59481bfdb7f301d90808d58c0c7df73f4b029531 # Parent 2d433fa7ff44a50e791c693bbd3f390117f3bd8e tests: make test-pathencode use absolute_import diff -r 2d433fa7ff44 -r 59481bfdb7f3 tests/test-check-py3-compat.t --- a/tests/test-check-py3-compat.t Sat Apr 16 02:59:36 2016 +0530 +++ b/tests/test-check-py3-compat.t Sat Apr 16 03:04:23 2016 +0530 @@ -60,7 +60,6 @@ tests/test-lrucachedict.py not using absolute_import tests/test-lrucachedict.py requires print_function tests/test-manifest.py not using absolute_import - tests/test-pathencode.py not using absolute_import tests/test-trusted.py requires print_function #if py3exe diff -r 2d433fa7ff44 -r 59481bfdb7f3 tests/test-pathencode.py --- a/tests/test-pathencode.py Sat Apr 16 02:59:36 2016 +0530 +++ b/tests/test-pathencode.py Sat Apr 16 03:04:23 2016 +0530 @@ -5,11 +5,19 @@ # that have proven likely to expose bugs and divergent behavior in # different encoding implementations. -from __future__ import print_function +from __future__ import absolute_import, print_function -from mercurial import store -import binascii, itertools, math, os, random, sys, time +import binascii import collections +import itertools +import math +import os +import random +import sys +import time +from mercurial import ( + store, +) validchars = set(map(chr, range(0, 256))) alphanum = range(ord('A'), ord('Z'))