##// END OF EJS Templates
note v4.1 msg spec change in clear_output handler
MinRK -
Show More
@@ -743,7 +743,12 b' var IPython = (function (IPython) {'
743
743
744
744
745 OutputArea.prototype.handle_clear_output = function (msg) {
745 OutputArea.prototype.handle_clear_output = function (msg) {
746 this.clear_output(msg.content.wait);
746 // msg spec v4 had stdout, stderr, display keys
747 // v4.1 replaced these with just wait
748 // The default behavior is the same (stdout=stderr=display=True, wait=False),
749 // so v4 messages will still be properly handled,
750 // except for the rarely used clearing less than all output.
751 this.clear_output(msg.content.wait || false);
747 };
752 };
748
753
749
754
General Comments 0
You need to be logged in to leave comments. Login now