Fixed a typo in a comment (issue #23016).

This commit is contained in:
Serhiy Storchaka 2014-12-14 10:53:50 +02:00
commit 2c63c4b85d
1 changed files with 1 additions and 1 deletions

View File

@ -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))