git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/internal/toml-test/tests/invalid/control/control.multi (about) 1 # "\x.." sequences are replaced with literal control characters. 2 3 comment-null = "null" # \x00 4 comment-lf = "ctrl-P" # \x10 5 comment-us = "ctrl-_" # \x1f 6 comment-del = "0x7f" # \x7f 7 comment-cr = "Carriage return in comment" # \x0da=1 8 9 string-null = "null\x00" 10 string-lf = "null\x10" 11 string-us = "null\x1f" 12 string-del = "null\x7f" 13 14 rawstring-null = 'null\x00' 15 rawstring-lf = 'null\x10' 16 rawstring-us = 'null\x1f' 17 rawstring-del = 'null\x7f' 18 19 multi-null = """null\x00""" 20 multi-lf = """null\x10""" 21 multi-us = """null\x1f""" 22 multi-del = """null\x7f""" 23 24 rawmulti-null = '''null\x00''' 25 rawmulti-lf = '''null\x10''' 26 rawmulti-us = '''null\x1f''' 27 rawmulti-del = '''null\x7f''' 28 29 string-bs = "backspace\x08" 30 31 bare-null = "some value" \x00 32 bare-formfeed = \x0c 33 bare-vertical-tab = \x0b