...
1# "\x.." sequences are replaced with literal control characters.
2
3comment-null = "null" # \x00
4comment-lf = "ctrl-P" # \x10
5comment-us = "ctrl-_" # \x1f
6comment-del = "0x7f" # \x7f
7comment-cr = "Carriage return in comment" # \x0da=1
8
9string-null = "null\x00"
10string-lf = "null\x10"
11string-us = "null\x1f"
12string-del = "null\x7f"
13
14rawstring-null = 'null\x00'
15rawstring-lf = 'null\x10'
16rawstring-us = 'null\x1f'
17rawstring-del = 'null\x7f'
18
19multi-null = """null\x00"""
20multi-lf = """null\x10"""
21multi-us = """null\x1f"""
22multi-del = """null\x7f"""
23
24rawmulti-null = '''null\x00'''
25rawmulti-lf = '''null\x10'''
26rawmulti-us = '''null\x1f'''
27rawmulti-del = '''null\x7f'''
28
29string-bs = "backspace\x08"
30
31bare-null = "some value" \x00
32bare-formfeed = \x0c
33bare-vertical-tab = \x0b
View as plain text