Skip to content

Commit 4079074

Browse files
committed
Move comment to a better place
1 parent e396622 commit 4079074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_repl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ def spawn_repl(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, custom=F
4343
# default module search path.
4444
stdin_fname = os.path.join(os.path.dirname(sys.executable), "<stdin>")
4545
cmd_line = [stdin_fname, '-I']
46+
# Don't re-run the built-in REPL from interactive mode
47+
# if we're testing a custom REPL (such as the asyncio REPL).
4648
if not custom:
47-
# Don't re-run the built-in REPL from interactive mode
48-
# if we're testing a custom REPL (such as the asyncio REPL).
4949
cmd_line.append('-i')
5050
cmd_line.extend(args)
5151

0 commit comments

Comments
 (0)