mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Fix indentation.
This commit is contained in:
parent
25a404520d
commit
e1857d999d
2 changed files with 5 additions and 5 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue