| 591 | global DEBUG |
| 592 | dbbackup = DEBUG |
| 593 | class FakeLogger: |
| 594 | def debug(self, msg, *args): print(msg % args) |
| 595 | info = warning = error = debug |
| 596 | DEBUG = FakeLogger() |
| 597 | print(" fetching the file to establish a connection") |
| 598 | fo = _urllib.request.urlopen(url) |
no outgoing calls
searching dependent graphs…