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 ce03cce commit 8b9d218Copy full SHA for 8b9d218
Lib/test/test_repl.py
@@ -269,7 +269,7 @@ def test_pythonstartup_success(self):
269
def test_pythonstartup_failure(self):
270
# case 2: error in PYTHONSTARTUP triggered by user input
271
startup_code = "def foo():\n 1/0\n"
272
- with new_startup_env(code=startup_code, histfile=".asyncio_history") as startup_env:
+ with new_startup_env(code=startup_code, histfile=".pythonhist") as startup_env:
273
# -q to suppress noise
274
p = spawn_repl("-q", env=os.environ | startup_env, isolated=False)
275
p.stdin.write("foo()")
0 commit comments