Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5d4ff5

Browse files
committed
Revert "Move qt_for_kernel.py from external to lib"
This reverts commit d676565.
1 parent 00fa539 commit f5d4ff5

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

IPython/lib/guisupport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def start_event_loop_wx(app=None):
108108

109109
def get_app_qt4(*args, **kwargs):
110110
"""Create a new qt4 app or return an existing one."""
111-
from IPython.lib.qt_for_kernel import QtGui
111+
from IPython.external.qt_for_kernel import QtGui
112112
app = QtGui.QApplication.instance()
113113
if app is None:
114114
if not args:

IPython/lib/inputhookqt4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import threading
2222

2323
from IPython.core.interactiveshell import InteractiveShell
24-
from IPython.lib.qt_for_kernel import QtCore, QtGui
24+
from IPython.external.qt_for_kernel import QtCore, QtGui
2525
from IPython.lib.inputhook import allow_CTRL_C, ignore_CTRL_C, stdin_ready
2626

2727
#-----------------------------------------------------------------------------

0 commit comments

Comments
 (0)