Show More
@@ -17,7 +17,7 b' from StringIO import StringIO' | |||||
17 | import nose.tools as nt |
|
17 | import nose.tools as nt | |
18 |
|
18 | |||
19 | from IPython.core import magic |
|
19 | from IPython.core import magic | |
20 |
from IPython.core import |
|
20 | from IPython.core.magics import execution | |
21 | from IPython.nbformat.v3.tests.nbexamples import nb0 |
|
21 | from IPython.nbformat.v3.tests.nbexamples import nb0 | |
22 | from IPython.nbformat import current |
|
22 | from IPython.nbformat import current | |
23 | from IPython.testing import decorators as dec |
|
23 | from IPython.testing import decorators as dec | |
@@ -429,7 +429,7 b' def test_timeit_arguments():' | |||||
429 | _ip.magic("timeit ('#')") |
|
429 | _ip.magic("timeit ('#')") | |
430 |
|
430 | |||
431 |
|
431 | |||
432 |
@dec.skipif( |
|
432 | @dec.skipif(execution.profile is None) | |
433 | def test_prun_quotes(): |
|
433 | def test_prun_quotes(): | |
434 | "Test that prun does not clobber string escapes (GH #1302)" |
|
434 | "Test that prun does not clobber string escapes (GH #1302)" | |
435 | _ip.magic("prun -q x = '\t'") |
|
435 | _ip.magic("prun -q x = '\t'") |
@@ -33,7 +33,7 b' from IPython.core import page, pylabtools' | |||||
33 | from IPython.core.autocall import ZMQExitAutocall |
|
33 | from IPython.core.autocall import ZMQExitAutocall | |
34 | from IPython.core.displaypub import DisplayPublisher |
|
34 | from IPython.core.displaypub import DisplayPublisher | |
35 | from IPython.core.macro import Macro |
|
35 | from IPython.core.macro import Macro | |
36 |
from IPython.core.magic |
|
36 | from IPython.core.magics import MacroToEdit | |
37 | from IPython.core.payloadpage import install_payload_page |
|
37 | from IPython.core.payloadpage import install_payload_page | |
38 | from IPython.lib.kernel import ( |
|
38 | from IPython.lib.kernel import ( | |
39 | get_connection_file, get_connection_info, connect_qtconsole |
|
39 | get_connection_file, get_connection_info, connect_qtconsole | |
@@ -49,7 +49,6 b' from IPython.zmq.displayhook import ZMQShellDisplayHook, _encode_binary' | |||||
49 | from IPython.zmq.session import extract_header |
|
49 | from IPython.zmq.session import extract_header | |
50 | from session import Session |
|
50 | from session import Session | |
51 |
|
51 | |||
52 |
|
||||
53 | #----------------------------------------------------------------------------- |
|
52 | #----------------------------------------------------------------------------- | |
54 | # Functions and classes |
|
53 | # Functions and classes | |
55 | #----------------------------------------------------------------------------- |
|
54 | #----------------------------------------------------------------------------- |
General Comments 0
You need to be logged in to leave comments.
Login now