##// END OF EJS Templates
Move most readline code from InteractiveShell to terminal subclass...
Move most readline code from InteractiveShell to terminal subclass This is the first stage of my effort to use prompt_toolkit for the terminal interface. My plan is to create a new subclass of InteractiveShell which deals with the terminal using prompt_toolkit instead of readline. To facilitate this, I am first trying to separate as much of the readline code as possible out of InteractiveShell to the TerminalInteractiveShell subclass (I don't intend the new subclass to inherit from TIS). I haven't moved any of the config options relating to readline yet, because moving them will break some people's existing config files. But if we're switching to prompt_toolkit by default, readline related config is going to be broken anyway.

File last commit:

r21846:5f823782
r21846:5f823782
Show More
contexts.py
64 lines | 1.7 KiB | text/x-python | PythonLexer
Bradley M. Froehle
Better handling of `__file__` when running scripts....
r8529 # encoding: utf-8
Thomas Kluyver
Move most readline code from InteractiveShell to terminal subclass...
r21846 """Miscellaneous context managers.
Bradley M. Froehle
Better handling of `__file__` when running scripts....
r8529 """
Thomas Kluyver
Move most readline code from InteractiveShell to terminal subclass...
r21846 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
Bradley M. Froehle
Better handling of `__file__` when running scripts....
r8529
class preserve_keys(object):
"""Preserve a set of keys in a dictionary.
Upon entering the context manager the current values of the keys
will be saved. Upon exiting, the dictionary will be updated to
restore the original value of the preserved keys. Preserved keys
which did not exist when entering the context manager will be
deleted.
Thomas Kluyver
Improvements to docs formatting.
r12553 Examples
--------
Bradley M. Froehle
Better handling of `__file__` when running scripts....
r8529
>>> d = {'a': 1, 'b': 2, 'c': 3}
>>> with preserve_keys(d, 'b', 'c', 'd'):
... del d['a']
... del d['b'] # will be reset to 2
... d['c'] = None # will be reset to 3
... d['d'] = 4 # will be deleted
... d['e'] = 5
... print(sorted(d.items()))
...
[('c', None), ('d', 4), ('e', 5)]
>>> print(sorted(d.items()))
[('b', 2), ('c', 3), ('e', 5)]
"""
def __init__(self, dictionary, *keys):
self.dictionary = dictionary
self.keys = keys
def __enter__(self):
# Actions to perform upon exiting.
to_delete = []
to_update = {}
d = self.dictionary
for k in self.keys:
if k in d:
to_update[k] = d[k]
else:
to_delete.append(k)
self.to_delete = to_delete
self.to_update = to_update
def __exit__(self, *exc_info):
d = self.dictionary
for k in self.to_delete:
d.pop(k, None)
d.update(self.to_update)
Thomas Kluyver
Move most readline code from InteractiveShell to terminal subclass...
r21846
class NoOpContext(object):
"""Context manager that does nothing."""
def __enter__(self): pass
def __exit__(self, type, value, traceback): pass