From: Serhiy Storchaka Date: Sun, 14 Dec 2014 08:53:00 +0000 (+0200) Subject: Fixed a typo in a comment (issue #23016). X-Git-Tag: v3.4.3rc1~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb9a9b6ffa7946f0e76f5425bacadb4944e615f8;p=thirdparty%2FPython%2Fcpython.git Fixed a typo in a comment (issue #23016). --- diff --git a/Lib/warnings.py b/Lib/warnings.py index 3a8fc5db6516..70d087e6d9ad 100644 --- a/Lib/warnings.py +++ b/Lib/warnings.py @@ -12,7 +12,7 @@ def showwarning(message, category, filename, lineno, file=None, line=None): 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))