summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-05 18:31:34 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-05 18:31:34 (GMT)
commite1857d999d5547aa1ed99a76dad889b468a71222 (patch)
treebaac1e80f3563ea4991c585ee70b9872eab0a3ef /Lib/test/test_capi.py
parent25a404520da6c2560690e457404ea36f4aaa9344 (diff)
downloadcpython-e1857d999d5547aa1ed99a76dad889b468a71222.zip
cpython-e1857d999d5547aa1ed99a76dad889b468a71222.tar.gz
cpython-e1857d999d5547aa1ed99a76dad889b468a71222.tar.bz2
Fix indentation.
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r--Lib/test/test_capi.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index c0c8a12..f1ea5a9 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -46,10 +46,10 @@ class CAPITest(unittest.TestCase):
def test_no_FatalError_infinite_loop(self):
with support.suppress_crash_popup():
p = subprocess.Popen([sys.executable, "-c",
- 'import _testcapi;'
- '_testcapi.crash_no_current_thread()'],
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE)
+ 'import _testcapi;'
+ '_testcapi.crash_no_current_thread()'],
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
(out, err) = p.communicate()
self.assertEqual(out, b'')
# This used to cause an infinite loop.