##// END OF EJS Templates
Allow type checking on elements of List,Tuple,Set...
Allow type checking on elements of List,Tuple,Set matches List,Tuple,Set signatures in Traits, but still supports single-argument default value usage in current IPython code

File last commit:

r3602:8554e339
r3870:2ac44db6
Show More
displayhook.py
22 lines | 589 B | text/x-python | PythonLexer
import __builtin__
from session import extract_header
class DisplayHook(object):
topic=None
def __init__(self, session, pub_socket):
self.session = session
self.pub_socket = pub_socket
self.parent_header = {}
def __call__(self, obj):
if obj is None:
return
__builtin__._ = obj
msg = self.session.send(self.pub_socket, u'pyout', {u'data':repr(obj)},
parent=self.parent_header, ident=self.topic)
def set_parent(self, parent):
self.parent_header = extract_header(parent)