[issue45737] assertLogs to optionally not disable existing handlers

2022-01-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: -Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list

[issue45737] assertLogs to optionally not disable existing handlers

2021-11-06 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45737] assertLogs to optionally not disable existing handlers

2021-11-06 Thread Daniel
Change by Daniel <3dan...@hotmail.com>: -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45737] assertLogs to optionally not disable existing handlers

2021-11-06 Thread Daniel
Change by Daniel <3dan...@hotmail.com>: -- components: +Library (Lib) versions: +Python 3.11 ___ Python tracker ___ ___

[issue45737] assertLogs to optionally not disable existing handlers

2021-11-06 Thread Daniel
New submission from Daniel <3dan...@hotmail.com>: At the moment, assertLogs removes the handlers attached to the logger. In general this is good, because it reduces message spamming in the test logs. However, if the code being tested is relying on a handler to do something, then the test fails