commit | eb9a9b6ffa7946f0e76f5425bacadb4944e615f8 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Dec 14 10:53:00 2014 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Dec 14 10:53:00 2014 +0200 |
tree | 2402d93512aeb601aceba788983cc2ed4fb4528c | |
parent | 9566de18e60268c0899c797292dc6c467f6f6531 [diff] |
Fixed a typo in a comment (issue #23016).
diff --git a/Lib/warnings.py b/Lib/warnings.py index 3a8fc5d..70d087e 100644 --- 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))