##// END OF EJS Templates
Fix clashes between debugger tests and coverage.py...
Fix clashes between debugger tests and coverage.py coverage.py works by setting the trace function. But so does the debugger, so we need to re-set it afterwards to get accurate coverage results.

File last commit:

r12103:dc60758c
r12286:fab155c9
Show More
namespace.js
32 lines | 852 B | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 var IPython = IPython || {};
IPython.namespace = function (ns_string) {
Matthias BUSSONNIER
"use strict" in most (if not all) our javascript...
r12103 "use strict";
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 var parts = ns_string.split('.'),
parent = IPython,
i;
// String redundant leading global
if (parts[0] === "IPython") {
parts = parts.slice(1);
}
for (i=0; i<parts.length; i+=1) {
// Create property if it doesn't exist
if (typeof parent[parts[i]] === "undefined") {
Stefan van der Walt
Clean up javascript based on js2-mode feedback.
r5479 parent[parts[i]] = {};
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 }
}
return parent;
};
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349