mirror of https://github.com/python/cpython
Fixed a typo in a comment (issue #23016).
This commit is contained in:
parent
9566de18e6
commit
eb9a9b6ffa
|
@ -12,7 +12,7 @@ def showwarning(message, category, filename, lineno, file=None, line=None):
|
||||||
if file is None:
|
if file is None:
|
||||||
file = sys.stderr
|
file = sys.stderr
|
||||||
if file is None:
|
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
|
return
|
||||||
try:
|
try:
|
||||||
file.write(formatwarning(message, category, filename, lineno, line))
|
file.write(formatwarning(message, category, filename, lineno, line))
|
||||||
|
|
Loading…
Reference in New Issue