summaryrefslogtreecommitdiff
path: root/tests/functional/i/inconsistent/inconsistent_quotes2.py
blob: d9b157e34dc7d4053bbedcd7081c26d82f4ee636 (plain)
1
2
3
4
5
6
7
8
9
10
"""Tests for inconsistent quoting strategy.

In this file, single quotes are the majority quote delimiter.
"""

FIRST_STRING = "double-quoted string"  # [inconsistent-quotes]
SECOND_STRING = 'single-quoted string'
THIRD_STRING = 'another single-quoted string'
FOURTH_STRING = 'yet another single-quoted string'
FIFTH_STRING = "double-quoted string with an unescaped 'single quote'"