File size: 318 Bytes
948620a |
1 2 3 4 5 6 7 8 9 10 11 |
from .Shadow import __version__
# Void cython.* directives (for case insensitive operating systems).
from .Shadow import *
def load_ipython_extension(ip):
"""Load the extension in IPython."""
from .Build.IpythonMagic import CythonMagics # pylint: disable=cyclic-import
ip.register_magics(CythonMagics)
|