##// END OF EJS Templates
Document magic profile as deprecated...
Matthias Bussonnier -
Show More
@@ -303,12 +303,14 b' Currently the magic system has the following functions:""",'
303
303
304 @line_magic
304 @line_magic
305 def profile(self, parameter_s=''):
305 def profile(self, parameter_s=''):
306 """Print your currently active IPython profile.
306 """DEPRECATED since IPython 2.0.
307
308 Raise `UsageError`. To profile code use the :magic:`prun` magic.
309
307
310
308 See Also
311 See Also
309 --------
312 --------
310 prun : run code using the Python profiler
313 prun : run code using the Python profiler (:magic:`prun`)
311 (:meth:`~IPython.core.magics.execution.ExecutionMagics.prun`)
312 """
314 """
313 raise UsageError("The `%profile` magic has been deprecated since IPython 2.0. "
315 raise UsageError("The `%profile` magic has been deprecated since IPython 2.0. "
314 "and removed in IPython 6.0. Please use the value of `get_ipython().profile` instead "
316 "and removed in IPython 6.0. Please use the value of `get_ipython().profile` instead "
@@ -75,7 +75,7 b' Miscs'
75 * Faster shutdown. :ghpull:`10408`
75 * Faster shutdown. :ghpull:`10408`
76 * Fix a crash in reverse search. :ghpull:`10371`
76 * Fix a crash in reverse search. :ghpull:`10371`
77 * added ``Completer.backslash_combining_completions`` boolean option to
77 * added ``Completer.backslash_combining_completions`` boolean option to
78 deactivate backslash-tab completion that may conflict with windows path.
78 deactivate backslash-tab completion that may conflict with windows path.
79
79
80 IPython 5.3
80 IPython 5.3
81 ===========
81 ===========
General Comments 0
You need to be logged in to leave comments. Login now