(self)
| 67 | Context manager that does nothing.""" |
| 68 | |
| 69 | def __init__(self): |
| 70 | warnings.warn("""NoOpContext is deprecated since IPython 5.0 """, |
| 71 | DeprecationWarning, stacklevel=2) |
| 72 | |
| 73 | def __enter__(self): pass |
| 74 | def __exit__(self, type, value, traceback): pass |