##// END OF EJS Templates
Merge pull request #4115 from takluyver/doc-register-magic-func...
Thomas Kluyver -
r12302:9d0ebbe2 merge
parent child Browse files
Show More
@@ -22,6 +22,7 b' import __future__'
22 22 import abc
23 23 import ast
24 24 import atexit
25 import functools
25 26 import os
26 27 import re
27 28 import runpy
@@ -2028,7 +2029,6 b' class InteractiveShell(SingletonConfigurable):'
2028 2029
2029 2030 # Expose as public API from the magics manager
2030 2031 self.register_magics = self.magics_manager.register
2031 self.register_magic_function = self.magics_manager.register_function
2032 2032 self.define_magic = self.magics_manager.define_magic
2033 2033
2034 2034 self.register_magics(m.AutoMagics, m.BasicMagics, m.CodeMagics,
@@ -2052,6 +2052,12 b' class InteractiveShell(SingletonConfigurable):'
2052 2052 # should be split into a prompt manager and displayhook. We probably
2053 2053 # even need a centralize colors management object.
2054 2054 self.magic('colors %s' % self.colors)
2055
2056 # Defined here so that it's included in the documentation
2057 @functools.wraps(magic.MagicsManager.register_function)
2058 def register_magic_function(self, func, magic_kind='line', magic_name=None):
2059 self.magics_manager.register_function(func,
2060 magic_kind=magic_kind, magic_name=magic_name)
2055 2061
2056 2062 def run_line_magic(self, magic_name, line):
2057 2063 """Execute the given line magic.
@@ -57,7 +57,7 b' IPython at that point.'
57 57 the extension again. It is up to the extension author to add code to manage
58 58 that.
59 59
60 Useful :class:`InteractiveShell` methods include :meth:`~IPython.core.interactiveshell.InteractiveShell.define_magic`,
60 Useful :class:`InteractiveShell` methods include :meth:`~IPython.core.interactiveshell.InteractiveShell.register_magic_function`,
61 61 :meth:`~IPython.core.interactiveshell.InteractiveShell.push` (to add variables to the user namespace) and
62 62 :meth:`~IPython.core.interactiveshell.InteractiveShell.drop_by_id` (to remove variables on unloading).
63 63
General Comments 0
You need to be logged in to leave comments. Login now