We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb09f9 commit 81f305fCopy full SHA for 81f305f
Lib/test/test_capi/test_misc.py
@@ -1995,7 +1995,7 @@ def test_pending_call_creates_thread_subinterpreter(self):
1995
1996
def output():
1997
time.sleep(1)
1998
- print("x")
+ print("x", end="")
1999
2000
def callback():
2001
threading.Thread(target=output).start()
@@ -2016,7 +2016,7 @@ def create_pending_call():
2016
"""
2017
rc, out, err = assert_python_ok('-c', source)
2018
self.assertEqual(rc, 0)
2019
- self.assertEqual(out, b"x\n")
+ self.assertEqual(out, b"x")
2020
self.assertEqual(err, b"")
2021
2022
0 commit comments