" of it."
)
+string_with_nameescape = (
+ "........................................................................ \N{LAO KO LA}"
+)
+
+string_with_nameescape = (
+ "........................................................................... \N{LAO KO LA}"
+)
+
+string_with_nameescape = (
+ "............................................................................ \N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ "...................................................................... \\\N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ "......................................................................... \\\N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ ".......................................................................... \\\N{LAO KO LA}"
+)
+
+string_with_escaped_nameescape = (
+ "........................................................................ \\N{LAO KO LA}"
+)
+
+string_with_escaped_nameescape = (
+ "........................................................................... \\N{LAO KO LA}"
+)
+
# output
old_fmt_string1 = (
"While we are on the topic of %s, we should also note that old-style formatting"
- " must also be preserved, since some %s still uses it."
- % ("formatting", "code")
+ " must also be preserved, since some %s still uses it." % ("formatting", "code")
)
old_fmt_string2 = "This is a %s %s %s %s" % (
assert some_type_of_boolean_expression, (
"Followed by a really really really long string that is used to provide context to"
- " the AssertionError exception, which uses dynamic string %s."
- % "formatting"
+ " the AssertionError exception, which uses dynamic string %s." % "formatting"
)
assert some_type_of_boolean_expression, (
"This is a really long string that can't be merged because it has a likely pragma at the end" # pylint: disable=some-pylint-check
" of it."
)
+
+string_with_nameescape = (
+ "........................................................................"
+ " \N{LAO KO LA}"
+)
+
+string_with_nameescape = (
+ "..........................................................................."
+ " \N{LAO KO LA}"
+)
+
+string_with_nameescape = (
+ "............................................................................"
+ " \N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ "......................................................................"
+ " \\\N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ "........................................................................."
+ " \\\N{LAO KO LA}"
+)
+
+string_with_nameescape_and_escaped_backslash = (
+ ".........................................................................."
+ " \\\N{LAO KO LA}"
+)
+
+string_with_escaped_nameescape = (
+ "........................................................................ \\N{LAO"
+ " KO LA}"
+)
+
+string_with_escaped_nameescape = (
+ "..........................................................................."
+ " \\N{LAO KO LA}"
+)