| 267 | pass |
| 268 | |
| 269 | class CustomOpenHook: |
| 270 | def __init__(self): |
| 271 | self.invoked = False |
| 272 | def __call__(self, *args, **kargs): |
| 273 | self.invoked = True |
| 274 | return open(*args, encoding="utf-8") |
| 275 | |
| 276 | t = self.writeTmp("\n") |
| 277 | custom_open_hook = CustomOpenHook() |
no outgoing calls
searching dependent graphs…