File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 22import sys
33import time
44import six
5- from six import unichr
65
76from xml .dom .minidom import Document
87
2120
2221if sys .maxunicode > 0x10000 :
2322 _char_tail = six .u ('%s-%s' ) % (
24- unichr (0x10000 ),
25- unichr (min (sys .maxunicode , 0x10FFFF ))
23+ six . unichr (0x10000 ),
24+ six . unichr (min (sys .maxunicode , 0x10FFFF ))
2625 )
2726
2827_nontext_sub = re .compile (
Original file line number Diff line number Diff line change 66import six
77import re
88from os import path
9- from six import unichr
109from six .moves import StringIO
1110
1211from .unittest import TestResult , _TextTestResult , failfast
3433 ])
3534
3635_illegal_ranges = [
37- "%s-%s" % (unichr (low ), unichr (high ))
36+ "%s-%s" % (six . unichr (low ), six . unichr (high ))
3837 for (low , high ) in _illegal_unichrs
3938]
4039
You can’t perform that action at this time.
0 commit comments