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 6749b83 commit e76426dCopy full SHA for e76426d
Lib/test/test_repl.py
@@ -479,10 +479,7 @@ def test_quiet_mode(self):
479
self.assertEqual(output[:3], ">>>")
480
481
def test_pythonstartup_success(self):
482
- startup_code = dedent("""\
483
- import sys
484
- print('notice from pythonstartup in asyncio repl', file=sys.stderr)
485
- """)
+ startup_code = dedent("print('notice from pythonstartup in asyncio repl')")
486
startup_env = self.enterContext(
487
new_pythonstartup_env(code=startup_code, histfile=".asyncio_history"))
488
0 commit comments