##// END OF EJS Templates
Backport PR #6143: pin tornado to < 4 on travis js tests...
Backport PR #6143: pin tornado to < 4 on travis js tests Current phantom uses an old webkit that implemented draft76 of web sockets. Tornado 4 drops support for draft76. This doesn’t affect any real browsers, as far as I can tell.

File last commit:

r12103:dc60758c
r17246:4655fd4a
Show More
codemirror-ipython.js
17 lines | 655 B | application/javascript | JavascriptLexer
// IPython mode is just a slightly altered Python Mode with `?` beeing a extra
// single operator. Here we define `ipython` mode in the require `python`
// callback to auto-load python mode, which is more likely not the best things
// to do, but at least the simple one for now.
CodeMirror.requireMode('python',function(){
"use strict";
CodeMirror.defineMode("ipython", function(conf, parserConf) {
parserConf.singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\\?]");
parserConf.name = 'python'
return CodeMirror.getMode(conf, parserConf);
}, 'python');
CodeMirror.defineMIME("text/x-ipython", "ipython");
})