##// END OF EJS Templates
Move Qt package to top-level.
Move Qt package to top-level.

File last commit:

r11008:878d5e9c
r11009:e16cf2f8
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')