(self, *args, **kwargs)
| 323 | |
| 324 | class MockLoggingModule(object): |
| 325 | def getLogger(self, *args, **kwargs): |
| 326 | return logging.getLogger("lib2to3") |
| 327 | |
| 328 | lib2to3.pgen2.driver.logging = MockLoggingModule() |
| 329 | logging.getLogger("lib2to3").setLevel(logging.ERROR) |
no outgoing calls