##// END OF EJS Templates
Catch interrupted poll() in terminal console...
Catch interrupted poll() in terminal console Alternative to my own PR #8108 - catch ZMQError in run_cell, and if it's caused by an interrupt, ignore it. more complex, especially if we want to handle the timeout nicely as proposed in the comments, but it's possibly also more convenient for other users of that API. Or perhaps not - I'm not sure what makes sense for other API consumers in this case. Fixes gh-8105

File last commit:

r20761:1c4ff331
r20836:0b3b28de
Show More
namespace.js
10 lines | 265 B | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Jonathan Frederic
Fixed global IPython namespace.
r17191 var IPython = IPython || {};
Jonathan Frederic
Make page.html require.js friendly.
r17188 define([], function(){
Matthias Bussonnier
Some cleanup unused code and missig use-strict
r18991 "use strict";
Min RK
`setup.py jsversion`
r20761 IPython.version = "4.0.0-dev";
Min RK
ensure IPython._target is defined
r20326 IPython._target = '_blank';
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});