##// END OF EJS Templates
py3: make the string unicode so its iterable in py3k
Mateusz Kwapich -
r30076:400dfded default
parent child Browse files
Show More
@@ -65,7 +65,7 b' def _reserved():'
65
65
66 these characters will be escaped by encodefunctions
66 these characters will be escaped by encodefunctions
67 '''
67 '''
68 winreserved = [ord(x) for x in '\\:*?"<>|']
68 winreserved = [ord(x) for x in u'\\:*?"<>|']
69 for x in range(32):
69 for x in range(32):
70 yield x
70 yield x
71 for x in range(126, 256):
71 for x in range(126, 256):
General Comments 0
You need to be logged in to leave comments. Login now