summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/_log.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-41943: Fix bug where assertLogs doesn't correctly filter messages… ↵Irit Katriel2020-11-021-0/+1
| | | | | | | | | (GH-22565) … by level @vsajip , @pitrou Automerge-Triggered-By: GH:vsajip
* bpo-39385: Add an assertNoLogs context manager to unittest.TestCase (GH-18067)Kit Choi2020-07-011-6/+22
| | | Co-authored-by: Rémi Lapeyre <remi.lapeyre@henki.fr>
* bpo-40275: Avoid importing logging in test.support (GH-19601)Serhiy Storchaka2020-04-251-0/+69
Import logging lazily in assertLogs() in unittest. Move TestHandler from test.support to logging_helper.