[Python-checkins] cpython: Fix typo in a comment (noticed by Terry Reedy)

nick.coghlan python-checkins at python.org
Sun Jul 15 15:13:27 CEST 2012


http://hg.python.org/cpython/rev/1a08ceae5ef1
changeset:   78115:1a08ceae5ef1
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sun Jul 15 23:13:18 2012 +1000
summary:
  Fix typo in a comment (noticed by Terry Reedy)

files:
  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
--- a/Lib/test/test_cmd_line_script.py
+++ b/Lib/test/test_cmd_line_script.py
@@ -146,7 +146,7 @@
     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")

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list