},
)
+# Regression test for https://github.com/psf/black/issues/3117.
+some_dict = {
+ "something_something":
+ r"Lorem ipsum dolor sit amet, an sed convenire eloquentiam \t"
+ r"signiferumque, duo ea vocibus consetetur scriptorem. Facer \t",
+}
+
+# Regression test for https://github.com/psf/black/issues/3459.
+xxxx(
+ empty_str_as_first_split=''
+ f'xxxxxxx {xxxxxxxxxx} xxx xxxxxxxxxx xxxxx xxx xxx xx '
+ 'xxxxx xxxxxxxxx xxxxxxx, xxx xxxxxxxxxxx xxx xxxxx. '
+ f'xxxxxxxxxxxxx xxxx xx xxxxxxxxxx. xxxxx: {x.xxx}',
+ empty_u_str_as_first_split=u''
+ f'xxxxxxx {xxxxxxxxxx} xxx xxxxxxxxxx xxxxx xxx xxx xx '
+ 'xxxxx xxxxxxxxx xxxxxxx, xxx xxxxxxxxxxx xxx xxxxx. '
+ f'xxxxxxxxxxxxx xxxx xx xxxxxxxxxx. xxxxx: {x.xxx}',
+)
+
# output
def foo():
some_func_call(
"xxxxxxxxxx",
- "xx {xxxxxxxxxxx}/xxxxxxxxxxx.xxx xxxx.xxx && xxxxxx -x "
- '"xxxx xxxxxxx xxxxxx xxxx; xxxx xxxxxx_xxxxx xxxxxx xxxx; '
- "xxxx.xxxx_xxxxxx(['xxxx.xxx'], xxxx.xxxxxxx().xxxxxxxxxx)\" ",
+ (
+ "xx {xxxxxxxxxxx}/xxxxxxxxxxx.xxx xxxx.xxx && xxxxxx -x "
+ '"xxxx xxxxxxx xxxxxx xxxx; xxxx xxxxxx_xxxxx xxxxxx xxxx; '
+ "xxxx.xxxx_xxxxxx(['xxxx.xxx'], xxxx.xxxxxxx().xxxxxxxxxx)\" "
+ ),
None,
("xxxxxxxxxxx",),
),
class A:
def foo():
some_func_call(
- "xx {xxxxxxxxxxx}/xxxxxxxxxxx.xxx xxxx.xxx && xxxxxx -x "
- "xxxx, ('xxxxxxx xxxxxx xxxx, xxxx') xxxxxx_xxxxx xxxxxx xxxx; "
- "xxxx.xxxx_xxxxxx(['xxxx.xxx'], xxxx.xxxxxxx().xxxxxxxxxx)\" ",
+ (
+ "xx {xxxxxxxxxxx}/xxxxxxxxxxx.xxx xxxx.xxx && xxxxxx -x "
+ "xxxx, ('xxxxxxx xxxxxx xxxx, xxxx') xxxxxx_xxxxx xxxxxx xxxx; "
+ "xxxx.xxxx_xxxxxx(['xxxx.xxx'], xxxx.xxxxxxx().xxxxxxxxxx)\" "
+ ),
None,
("xxxxxxxxxxx",),
),
)
lpar_and_rpar_have_comments = func_call( # LPAR Comment
- "Long really ridiculous type of string that shouldn't really even exist at all. I"
- " mean commmme onnn!!!", # Comma Comment
+ ( # Comma Comment
+ "Long really ridiculous type of string that shouldn't really even exist at all."
+ " I mean commmme onnn!!!"
+ ),
) # RPAR Comment
cmd_fstring = (
)
-value.__dict__[
- key
-] = "test" # set some Thrift field to non-None in the struct aa bb cc dd ee
+value.__dict__[key] = (
+ "test" # set some Thrift field to non-None in the struct aa bb cc dd ee
+)
RE_ONE_BACKSLASH = {
"asdf_hjkl_jkl": re.compile(
),
},
)
+
+# Regression test for https://github.com/psf/black/issues/3117.
+some_dict = {
+ "something_something": (
+ r"Lorem ipsum dolor sit amet, an sed convenire eloquentiam \t"
+ r"signiferumque, duo ea vocibus consetetur scriptorem. Facer \t"
+ ),
+}
+
+# Regression test for https://github.com/psf/black/issues/3459.
+xxxx(
+ empty_str_as_first_split=(
+ ""
+ f"xxxxxxx {xxxxxxxxxx} xxx xxxxxxxxxx xxxxx xxx xxx xx "
+ "xxxxx xxxxxxxxx xxxxxxx, xxx xxxxxxxxxxx xxx xxxxx. "
+ f"xxxxxxxxxxxxx xxxx xx xxxxxxxxxx. xxxxx: {x.xxx}"
+ ),
+ empty_u_str_as_first_split=(
+ ""
+ f"xxxxxxx {xxxxxxxxxx} xxx xxxxxxxxxx xxxxx xxx xxx xx "
+ "xxxxx xxxxxxxxx xxxxxxx, xxx xxxxxxxxxxx xxx xxxxx. "
+ f"xxxxxxxxxxxxx xxxx xx xxxxxxxxxx. xxxxx: {x.xxx}"
+ ),
+)