diff options
Diffstat (limited to 'contrib/python/ipython/py3/IPython/utils/contexts.py')
-rw-r--r-- | contrib/python/ipython/py3/IPython/utils/contexts.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/python/ipython/py3/IPython/utils/contexts.py b/contrib/python/ipython/py3/IPython/utils/contexts.py index 4d379b0eda..7f95d4419d 100644 --- a/contrib/python/ipython/py3/IPython/utils/contexts.py +++ b/contrib/python/ipython/py3/IPython/utils/contexts.py @@ -58,17 +58,3 @@ class preserve_keys(object): for k in self.to_delete: d.pop(k, None) d.update(self.to_update) - - -class NoOpContext(object): - """ - Deprecated - - Context manager that does nothing.""" - - def __init__(self): - warnings.warn("""NoOpContext is deprecated since IPython 5.0 """, - DeprecationWarning, stacklevel=2) - - def __enter__(self): pass - def __exit__(self, type, value, traceback): pass |