blob: 76553f98be66b461200e58777ee2e6dd30594224 [file] [log] [blame]
"""Tests for inconsistent quoting strategy.
In this file, double quotes are the majority quote delimiter.
"""
FIRST_STRING = "double-quoted string"
SECOND_STRING = 'single-quoted string' # [inconsistent-quotes]
THIRD_STRING = "another double-quoted string"
FOURTH_STRING = "yet another double-quoted string"
FIFTH_STRING = 'single-quoted string with an unescaped "double quote"'
def function_with_docstring():
'''This is a multi-line docstring that should not raise a warning even though the
delimiter it uses for quotes is not the delimiter used in the majority of the
module.
'''