equal
deleted
inserted
replaced
11 |
11 |
12 tilde is character-encoded |
12 tilde is character-encoded |
13 A = 'data/~' |
13 A = 'data/~' |
14 B = 'data/~7e' |
14 B = 'data/~7e' |
15 |
15 |
16 characters in ASCII code range 0..31 |
16 characters in ASCII code range 1..31 |
17 A = 'data/\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f' |
17 A = 'data/\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f' |
18 B = 'data/~00~01~02~03~04~05~06~07~08~09~0a~0b~0c~0d~0e~0f~10~11~12~13~14~15~16~17~18~19~1a~1b~1c~1d~1e~1f' |
18 B = 'data/~01~02~03~04~05~06~07~08~09~0a~0b~0c~0d~0e~0f~10~11~12~13~14~15~16~17~18~19~1a~1b~1c~1d~1e~1f' |
19 |
19 |
20 characters in ASCII code range 126..255 (only partially tested) |
20 characters in ASCII code range 126..255 (only partially tested) |
21 A = 'data/~ \x7f \x80 \x81 \x82 \x83 .. \xfd \xfe \xff' |
21 A = 'data/~ \x7f \x80 \x81 \x82 \x83 .. \xfd \xfe \xff' |
22 B = 'data/~7e ~7f ~80 ~81 ~82 ~83 .. ~fd ~fe ~ff' |
22 B = 'data/~7e ~7f ~80 ~81 ~82 ~83 .. ~fd ~fe ~ff' |
23 |
23 |