diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-15 13:13:18 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-15 13:13:18 (GMT) |
commit | 8e6e7d39d390fba610753fd7fe5306d1c62fe5ed (patch) | |
tree | 7fe69103f9a5f1374b0948c5a6f0ceea67c439c6 /Lib/test | |
parent | 6061000d0107d5d8026b034f8f7fd246b40426d0 (diff) | |
download | cpython-8e6e7d39d390fba610753fd7fe5306d1c62fe5ed.zip cpython-8e6e7d39d390fba610753fd7fe5306d1c62fe5ed.tar.gz cpython-8e6e7d39d390fba610753fd7fe5306d1c62fe5ed.tar.bz2 |
Fix typo in a comment (noticed by Terry Reedy)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_cmd_line_script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 8b6083e..17dfbc2 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") |