(self, record)
| 759 | stream=open('/dev/null', 'wt', encoding='utf-8')) |
| 760 | |
| 761 | def emit(self, record): |
| 762 | with self.sub_handler.lock: |
| 763 | self.sub_handler.emit(record) |
| 764 | |
| 765 | self.assertEqual(len(logging._handlers), 0) |
| 766 | refed_h = _OurHandler() |
no outgoing calls
no test coverage detected