Message399150
Serhiy, if you take a look at the code, `clear_ignored_deprecations()` only clears the filters that were added by `ignore_deprecations_from()`. It doesn't touch other filters. Sure, we can abuse the context manager instead but this looks pretty busy:
def setUp(self):
self.w = warnings.catch_warnings()
self.w.__enter__()
warnings.filterwarnings(...)
def tearDown():
self.w.__exit__(None, None, None)
Making the API symmetrical is a good idea though, I'll look into that tomorrow. |
|
Date |
User |
Action |
Args |
2021-08-06 21:11:24 | lukasz.langa | set | recipients:
+ lukasz.langa, serhiy.storchaka |
2021-08-06 21:11:24 | lukasz.langa | set | messageid: <1628284284.87.0.916959008907.issue44852@roundup.psfhosted.org> |
2021-08-06 21:11:24 | lukasz.langa | link | issue44852 messages |
2021-08-06 21:11:24 | lukasz.langa | create | |
|