From: Nick Coghlan Date: Sun, 15 Jul 2012 13:13:18 +0000 (+1000) Subject: Fix typo in a comment (noticed by Terry Reedy) X-Git-Tag: v3.3.0b2~201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e6e7d39d390fba610753fd7fe5306d1c62fe5ed;p=python Fix typo in a comment (noticed by Terry Reedy) --- diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 8b6083e84f..17dfbc2322 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -146,7 +146,7 @@ class CmdLineTest(unittest.TestCase): def test_stdin_loader(self): # Unfortunately, there's no way to automatically test the fully # interactive REPL, since that code path only gets executed when - # stdin in an interactive tty. + # stdin is an interactive tty. p = spawn_python() try: p.stdin.write(b"print(__loader__)\n")