| 4944 | |
| 4945 | |
| 4946 | class TestBufferingFormatter(logging.BufferingFormatter): |
| 4947 | def formatHeader(self, records): |
| 4948 | return '[(%d)' % len(records) |
| 4949 | |
| 4950 | def formatFooter(self, records): |
| 4951 | return '(%d)]' % len(records) |
| 4952 | |
| 4953 | class BufferingFormatterTest(unittest.TestCase): |
| 4954 | def setUp(self): |
no outgoing calls
searching dependent graphs…