Files
openide/python/testData/refactoring/introduceVariable/functionCallWithCommentNotInlined.after.py
Mikhail Golubev 5b763d7de7 PY-17979 Reverted controversial fix for the PY-13304
Continuation indent is used for function arguments only to avoid
structure ambiguity.
2016-01-13 20:19:39 +03:00

8 lines
143 B
Python

import subprocess as sp
a = sp.check_output(
args=['python', '-c', 'print("Spam")'],
# read errors too
stderr=sp.STDOUT
)
print(a)