...
1# NOTE: this file includes some literal tab characters.
2
3multiline_empty_one = """"""
4
5# A newline immediately following the opening delimiter will be trimmed.
6multiline_empty_two = """
7"""
8
9# \ at the end of line trims newlines as well; note that last \ is followed by
10# two spaces, which are ignored.
11multiline_empty_three = """\
12 """
13multiline_empty_four = """\
14 \
15 \
16 """
17
18equivalent_one = "The quick brown fox jumps over the lazy dog."
19equivalent_two = """
20The quick brown \
21
22
23 fox jumps over \
24 the lazy dog."""
25
26equivalent_three = """\
27 The quick brown \
28 fox jumps over \
29 the lazy dog.\
30 """
31
32whitespace-after-bs = """\
33 The quick brown \
34 fox jumps over \
35 the lazy dog.\
36 """
37
38only-ignore-first = """
39Here are \
40 two
41lines of text.
42And \
43
44 another
45 two.
46"""
47
48no-space = """a\
49 b"""
50
51# Has tab character.
52keep-ws-before = """a \
53 b"""
54
55escape-bs-1 = """a \\
56b"""
57
58escape-bs-2 = """a \\\
59b"""
60
61escape-bs-3 = """a \\\\
62 b"""
View as plain text