##// END OF EJS Templates
allow ContentsManager methods to return Futures...
allow ContentsManager methods to return Futures mainly adding `@gen.coroutine` and `yield gen.maybe_future` all over the place. No FileContentsManager methods are actually async at this point.

File last commit:

r18991:f2985dae
r19595:8d319048
Show More
namespace.js
9 lines | 233 B | application/javascript | JavascriptLexer
// Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
var IPython = IPython || {};
define([], function(){
"use strict";
IPython.version = "3.0.0-dev";
return IPython;
});