Skip to content

Commit 7e8fc59

Browse files
committed
Fixing installation related issues.
1 parent d16adee commit 7e8fc59

File tree

20 files changed

+79
-79
lines changed

20 files changed

+79
-79
lines changed

IPython/frontend/cocoa/tests/_trial_temp/test.log

Lines changed: 0 additions & 27 deletions
This file was deleted.

IPython/frontend/tests/test_prefilterfrontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def my_func():
8484
ipython0.user_ns = user_ns
8585
ipython0.user_global_ns = global_ns
8686
# Undo the hack at creation of PrefilterFrontEnd
87-
from IPythoncore. import iplib
87+
from IPython.core import iplib
8888
iplib.InteractiveShell.isthreaded = False
8989
return out
9090

IPython/kernel/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
import sys
3232

33-
# from IPython.tools import growl
33+
# from IPython.utils import growl
3434
# growl.start("IPython1 Client")
3535

3636

IPython/kernel/core/sync_traceback_trap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Imports
1919
#-------------------------------------------------------------------------------
2020
from traceback_trap import TracebackTrap
21-
from IPython.ultraTB import ColorTB
21+
from IPython.core.ultratb import ColorTB
2222

2323
class SyncTracebackTrap(TracebackTrap):
2424
""" TracebackTrap that displays immediatly the traceback in addition

IPython/kernel/multiengine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from twisted.python import log, components, failure
3636
from zope.interface import Interface, implements, Attribute
3737

38-
from IPython.tools import growl
38+
from IPython.utils import growl
3939
from IPython.kernel.util import printer
4040
from IPython.kernel.twistedutil import gatherBoth
4141
from IPython.kernel import map as Map

IPython/kernel/pendingdeferred.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from IPython.kernel.twistedutil import gatherBoth
3131
from IPython.kernel import error
3232
from IPython.external import guid
33-
from IPython.tools import growl
33+
from IPython.utils import growl
3434

3535
class PendingDeferredManager(object):
3636
"""A class to track pending deferreds.

IPython/kernel/scripts/ipcontroller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from IPython.kernel.fcutil import Tub, UnauthenticatedTub, have_crypto
3434

35-
# from IPython.tools import growl
35+
# from IPython.utils import growl
3636
# growl.start("IPython1 Controller")
3737

3838
from IPython.kernel.error import SecurityError
File renamed without changes.

scripts/ipython renamed to IPython/scripts/ipython

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ this mode, there is no way to pass IPython any command-line options, as those
2323
are trapped first by Python itself.
2424
"""
2525

26-
import IPython.Shell
26+
import IPython.core.shell
2727

28-
IPython.Shell.start().mainloop()
28+
IPython.core.shell.start().mainloop()

0 commit comments

Comments
 (0)