mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Fix a bug introduced by the addition of the 'record' argument to
test.test_support.catch_warning() where showwarning() was not being set properly.
This commit is contained in:
parent
6071cc8fb0
commit
5d023c3afa
1 changed files with 2 additions and 2 deletions
|
|
@ -406,11 +406,11 @@ def catch_warning(module=warnings, record=True):
|
|||
warnings.warn("foo")
|
||||
assert str(w.message) == "foo"
|
||||
"""
|
||||
original_filters = module.filters[:]
|
||||
original_showwarning = module.showwarning
|
||||
if record:
|
||||
warning_obj = WarningMessage()
|
||||
module.showwarning = warning_obj._showwarning
|
||||
original_filters = module.filters[:]
|
||||
original_showwarning = module.showwarning
|
||||
try:
|
||||
yield warning_obj if record else None
|
||||
finally:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue