Show More
@@ -29,17 +29,11 b' import runpy' | |||||
29 | import sys |
|
29 | import sys | |
30 | import tempfile |
|
30 | import tempfile | |
31 | import types |
|
31 | import types | |
32 |
|
32 | import urllib | ||
33 | # We need to use nested to support python 2.6, once we move to >=2.7, we can |
|
33 | from io import open as io_open | |
34 | # use the with keyword's new builtin support for nested managers |
|
|||
35 | try: |
|
|||
36 | from contextlib import nested |
|
|||
37 | except: |
|
|||
38 | from IPython.utils.nested_context import nested |
|
|||
39 |
|
34 | |||
40 | from IPython.config.configurable import SingletonConfigurable |
|
35 | from IPython.config.configurable import SingletonConfigurable | |
41 | from IPython.core import debugger, oinspect |
|
36 | from IPython.core import debugger, oinspect | |
42 | from IPython.core import history as ipcorehist |
|
|||
43 | from IPython.core import magic |
|
37 | from IPython.core import magic | |
44 | from IPython.core import page |
|
38 | from IPython.core import page | |
45 | from IPython.core import prefilter |
|
39 | from IPython.core import prefilter |
General Comments 0
You need to be logged in to leave comments.
Login now