##// END OF EJS Templates
Make traitlets notify check more robust against classes redefining equality and bool...
Make traitlets notify check more robust against classes redefining equality and bool Before this change, numpy arrays caused problems since comparing two numpy arrays returns an array of truth values, rather than a single truth value. This change guards against redefining the semantics of comparison by notifying on a trait change if the equality comparison returns anything other than an explicit True value.

File last commit:

r10286:b0400b4d
r15462:e1b4ab8c
Show More
__init__.py
11 lines | 316 B | text/x-python | PythonLexer
"""IPython kernels and associated utilities"""
# just for friendlier zmq version check
from . import zmq
from .connect import *
from .launcher import *
from .client import KernelClient
from .manager import KernelManager
from .blocking import BlockingKernelClient
from .multikernelmanager import MultiKernelManager