Files
openide/python/testData/formatter/continuationIndentInIndentingStatement_after.py
Mikhail Golubev a1382d3f9a PY-12360 PyTrailingBlankLinesPostFormatProcessor operates solely on Document level
Since it finally works as expected now, I also updated test data files to include this extra
line feed required by PEP8.
2015-04-27 20:34:49 +03:00

40 lines
439 B
Python

if True \
or False:
pass
elif \
False:
pass
for i in \
range(1, 100):
pass
with open('file1') as file1, \
open('file2') as file2:
pass
class \
A(object):
pass
def \
foo():
pass
try:
pass
except \
AttributeError:
pass
while value \
in values: # <- missing continuation indent here
do_smth()
if (1 + x.
value()):
pass