[Python-checkins] cpython (merge 3.4 -> default): Fixed a typo in a comment (issue #23016).

serhiy.storchaka python-checkins at python.org
Sun Dec 14 09:58:05 CET 2014


https://hg.python.org/cpython/rev/da1ec8e0e068
changeset:   93880:da1ec8e0e068
parent:      93878:df8601299c94
parent:      93879:70b6fe58c425
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Dec 14 10:53:50 2014 +0200
summary:
  Fixed a typo in a comment (issue #23016).

files:
  Lib/warnings.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/warnings.py b/Lib/warnings.py
--- a/Lib/warnings.py
+++ b/Lib/warnings.py
@@ -12,7 +12,7 @@
     if file is None:
         file = sys.stderr
         if file is None:
-            # sys.stderr is None when ran with pythonw.exe - warnings get lost
+            # sys.stderr is None when run with pythonw.exe - warnings get lost
             return
     try:
         file.write(formatwarning(message, category, filename, lineno, line))

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


More information about the Python-checkins mailing list