Show More
@@ -16,4 +16,4 b' from IPython.utils.shimmodule import ShimModule' | |||
|
16 | 16 | # trigger the custom attribute access above |
|
17 | 17 | |
|
18 | 18 | sys.modules['IPython.nbconvert'] = ShimModule( |
|
19 |
src='IPython.nbconvert', mirror=' |
|
|
19 | src='IPython.nbconvert', mirror='nbconvert') |
@@ -228,7 +228,7 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):' | |||
|
228 | 228 | history=('IPython.core.historyapp.HistoryApp', |
|
229 | 229 | "Manage the IPython history database." |
|
230 | 230 | ), |
|
231 |
nbconvert=(' |
|
|
231 | nbconvert=('nbconvert.nbconvertapp.NbConvertApp', | |
|
232 | 232 | "DEPRECATED: Convert notebooks to/from other formats." |
|
233 | 233 | ), |
|
234 | 234 | trust=('jupyter_nbformat.sign.TrustNotebookApp', |
@@ -241,7 +241,7 b' rprinte = raw_print_err' | |||
|
241 | 241 | |
|
242 | 242 | |
|
243 | 243 | def unicode_std_stream(stream='stdout'): |
|
244 |
"""DEPRECATED, moved to |
|
|
245 |
warn("IPython.utils.io.unicode_std_stream has moved to |
|
|
246 |
from |
|
|
244 | """DEPRECATED, moved to nbconvert.utils.io""" | |
|
245 | warn("IPython.utils.io.unicode_std_stream has moved to nbconvert.utils.io") | |
|
246 | from nbconvert.utils.io import unicode_std_stream | |
|
247 | 247 | return unicode_std_stream(stream) |
General Comments 0
You need to be logged in to leave comments.
Login now