mirror of https://github.com/python/cpython
Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning
This commit is contained in:
parent
d295032910
commit
323c40d48c
|
@ -278,6 +278,9 @@ def warn_explicit(message, category, filename, lineno,
|
||||||
_show_warning(message, category, filename, lineno)
|
_show_warning(message, category, filename, lineno)
|
||||||
else:
|
else:
|
||||||
warn(showwarning_msg, DeprecationWarning)
|
warn(showwarning_msg, DeprecationWarning)
|
||||||
|
if not callable(showwarning):
|
||||||
|
raise TypeError("warnings.showwarning() must be set to a "
|
||||||
|
"function or method")
|
||||||
# Print message and context
|
# Print message and context
|
||||||
showwarning(message, category, filename, lineno)
|
showwarning(message, category, filename, lineno)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue