X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/306a513137ec93a5053d415319e24bd4057d4045..0969ca4a46c4a2081be38f7e96a81a74b308c75f:/fuzz.py diff --git a/fuzz.py b/fuzz.py index 6e20686..a9ca8ef 100644 --- a/fuzz.py +++ b/fuzz.py @@ -50,9 +50,9 @@ def test_idempotent_any_syntatically_valid_python( # TODO: remove this try-except block when issues are resolved. return except TokenError as e: - if ( + if ( # Special-case logic for backslashes followed by newlines or end-of-input e.args[0] == "EOF in multi-line statement" - and re.search(r"\r?\n\\\r?\n", src_contents) is not None + and re.search(r"\\($|\r?\n)", src_contents) is not None ): # This is a bug - if it's valid Python code, as above, Black should be # able to cope with it. See issue #1012.