equal
deleted
inserted
replaced
123 * ascii hi (126..255) |
123 * ascii hi (126..255) |
124 * windows specials |
124 * windows specials |
125 |
125 |
126 these characters will be escaped by encodefunctions |
126 these characters will be escaped by encodefunctions |
127 """ |
127 """ |
128 winreserved = [ord(x) for x in u'\\:*?"<>|'] |
128 winreserved = [ord(x) for x in '\\:*?"<>|'] |
129 for x in range(32): |
129 for x in range(32): |
130 yield x |
130 yield x |
131 for x in range(126, 256): |
131 for x in range(126, 256): |
132 yield x |
132 yield x |
133 for x in winreserved: |
133 for x in winreserved: |