Files
openide/python/testData/formatter/gluedStringLiteralInParentheses.py
Mikhail Golubev 0e3662f1ed PY-12008 Restore alignment of the closing parenthesis after a "glued" string literal
Additionally, check that "Align collections and comprehensions when
multiline" setting doesn't affect it as it used to.
2017-10-30 14:09:46 +03:00

9 lines
62 B
Python

s1 = ('foo'
'bar'
)
s2 = (
'foo'
'bar'
)