Show More
@@ -60,7 +60,6 b'' | |||
|
60 | 60 | tests/test-lrucachedict.py not using absolute_import |
|
61 | 61 | tests/test-lrucachedict.py requires print_function |
|
62 | 62 | tests/test-manifest.py not using absolute_import |
|
63 | tests/test-pathencode.py not using absolute_import | |
|
64 | 63 | tests/test-trusted.py requires print_function |
|
65 | 64 | |
|
66 | 65 | #if py3exe |
@@ -5,11 +5,19 b'' | |||
|
5 | 5 | # that have proven likely to expose bugs and divergent behavior in |
|
6 | 6 | # different encoding implementations. |
|
7 | 7 | |
|
8 | from __future__ import print_function | |
|
8 | from __future__ import absolute_import, print_function | |
|
9 | 9 | |
|
10 | from mercurial import store | |
|
11 | import binascii, itertools, math, os, random, sys, time | |
|
10 | import binascii | |
|
12 | 11 | import collections |
|
12 | import itertools | |
|
13 | import math | |
|
14 | import os | |
|
15 | import random | |
|
16 | import sys | |
|
17 | import time | |
|
18 | from mercurial import ( | |
|
19 | store, | |
|
20 | ) | |
|
13 | 21 | |
|
14 | 22 | validchars = set(map(chr, range(0, 256))) |
|
15 | 23 | alphanum = range(ord('A'), ord('Z')) |
General Comments 0
You need to be logged in to leave comments.
Login now