10 lines
165 B
Python
10 lines
165 B
Python
s = """ This "should"
|
|
be
|
|
"linted" """
|
|
|
|
s = ''' This "should"
|
|
"not" be
|
|
"linted" '''
|
|
|
|
s = """'This should not be linted due to having would-be quadruple end quote'"""
|