Show More
@@ -345,16 +345,15 class Client(HasTraits): | |||
|
345 | 345 | _ids = List() |
|
346 | 346 | _connected=Bool(False) |
|
347 | 347 | _ssh=Bool(False) |
|
348 | _context = Instance('zmq.Context') | |
|
348 | _context = Instance('zmq.Context', allow_none=True) | |
|
349 | 349 | _config = Dict() |
|
350 | 350 | _engines=Instance(util.ReverseDict, (), {}) |
|
351 |
|
|
|
352 |
_ |
|
|
353 |
_ |
|
|
354 |
_ |
|
|
355 |
_ |
|
|
356 |
_ |
|
|
357 | _task_socket=Instance('zmq.Socket') | |
|
351 | _query_socket=Instance('zmq.Socket', allow_none=True) | |
|
352 | _control_socket=Instance('zmq.Socket', allow_none=True) | |
|
353 | _iopub_socket=Instance('zmq.Socket', allow_none=True) | |
|
354 | _notification_socket=Instance('zmq.Socket', allow_none=True) | |
|
355 | _mux_socket=Instance('zmq.Socket', allow_none=True) | |
|
356 | _task_socket=Instance('zmq.Socket', allow_none=True) | |
|
358 | 357 | _task_scheme=Unicode() |
|
359 | 358 | _closed = False |
|
360 | 359 | _ignored_control_replies=Integer(0) |
@@ -109,7 +109,7 class View(HasTraits): | |||
|
109 | 109 | results = Dict() |
|
110 | 110 | client = Instance('ipython_parallel.Client', allow_none=True) |
|
111 | 111 | |
|
112 | _socket = Instance('zmq.Socket') | |
|
112 | _socket = Instance('zmq.Socket', allow_none=True) | |
|
113 | 113 | _flag_names = List(['targets', 'block', 'track']) |
|
114 | 114 | _in_sync_results = Bool(False) |
|
115 | 115 | _targets = Any() |
General Comments 0
You need to be logged in to leave comments.
Login now