-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
F: stringsRelated to our handling of stringsRelated to our handling of stringsT: bugSomething isn't workingSomething isn't working
Description
I found this while messing around with #4511
(
# fmt: skip
"""
"""
)
gives
Cannot parse: 2:0: EOF in multi-line string
(
# fmt: skip
"\
"
)
gives
Cannot parse: 2:0: "
This is not fixed by #4380
This is fixed by #3978, though that PR appears to be stalled.
With #3978 applied:
(
# fmt: skip
"""
"""
)
gives
(
# fmt: skip
"""
"""
)
(
# fmt: skip
"\
"
)
gives
(
# fmt: skip
""
)
Metadata
Metadata
Assignees
Labels
F: stringsRelated to our handling of stringsRelated to our handling of stringsT: bugSomething isn't workingSomething isn't working