##// END OF EJS Templates
Moved submodule for components so I can next move the actual html dir
Moved submodule for components so I can next move the actual html dir

File last commit:

r11008:878d5e9c
r11011:818e3489
Show More
frontend.py
11 lines | 227 B | text/x-python | PythonLexer
import sys
import types
class ShimModule(types.ModuleType):
def __getattribute__(self, key):
exec 'from IPython import %s' % key
return eval(key)
sys.modules['IPython.frontend'] = ShimModule('frontend')