()
| 410 | |
| 411 | @contextmanager |
| 412 | def mute_warn(): |
| 413 | from IPython.utils import warn |
| 414 | save_warn = warn.warn |
| 415 | warn.warn = lambda *a, **kw: None |
| 416 | try: |
| 417 | yield |
| 418 | finally: |
| 419 | warn.warn = save_warn |
| 420 | |
| 421 | @contextmanager |
| 422 | def make_tempfile(name): |
nothing calls this directly
no outgoing calls
no test coverage detected