__init__.py
33 lines
| 1.1 KiB
| text/x-python
|
PythonLexer
Brian Granger
|
r2068 | # encoding: utf-8 | ||
""" | ||||
Extra capabilities for IPython | ||||
""" | ||||
#----------------------------------------------------------------------------- | ||||
Matthias BUSSONNIER
|
r5390 | # Copyright (C) 2008-2011 The IPython Development Team | ||
Brian Granger
|
r2068 | # | ||
# Distributed under the terms of the BSD License. The full license is in | ||||
# the file COPYING, distributed as part of this software. | ||||
#----------------------------------------------------------------------------- | ||||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
from IPython.lib.inputhook import ( | ||||
enable_wx, disable_wx, | ||||
enable_gtk, disable_gtk, | ||||
enable_qt4, disable_qt4, | ||||
Brian Granger
|
r2069 | enable_tk, disable_tk, | ||
Nicolas Rougier
|
r4806 | enable_glut, disable_glut, | ||
Nicolas Rougier
|
r4693 | enable_pyglet, disable_pyglet, | ||
Thomi Richards
|
r6459 | enable_gtk3, disable_gtk3, | ||
Brian Granger
|
r2214 | set_inputhook, clear_inputhook, | ||
Brian Granger
|
r2918 | current_gui | ||
Brian Granger
|
r2068 | ) | ||
Stefan van der Walt
|
r5320 | from IPython.lib.security import passwd | ||
Brian Granger
|
r2068 | #----------------------------------------------------------------------------- | ||
# Code | ||||
Brian Granger
|
r2918 | #----------------------------------------------------------------------------- | ||