add Kernel.clear_callbacks_for_msg

pull/37/head
MinRK 13 years ago
parent 5a3da993e3
commit b322e72bee

@ -403,9 +403,16 @@ var IPython = (function (IPython) {
};
Kernel.prototype.clear_callbacks_for_msg = function (msg_id) {
if (this._msg_callbacks[msg_id] !== undefined ) {
delete this._msg_callbacks[msg_id];
}
};
Kernel.prototype.set_callbacks_for_msg = function (msg_id, callbacks) {
this._msg_callbacks[msg_id] = callbacks || {};
}
};
Kernel.prototype._handle_shell_reply = function (e) {

Loading…
Cancel
Save