##// END OF EJS Templates
Remove old deprecated extensions....
Remove old deprecated extensions. All theses extensions are already in their own repository. Local Rmagic could in any cases not be imported as %load_ext would raise if rpy2 not available. Cython and sympy where still trying to do the right things, which I removed, and converted to warnings. (cannot use DeprecationWarning as they would be hidden) and no way to get the right stacklevel as this is magic that load the ext.

File last commit:

r21453:38422053
r21453:38422053
Show More
cythonmagic.py
21 lines | 701 B | text/x-python | PythonLexer
Brian Granger
Adding Cython extension and example notebook.
r7031 # -*- coding: utf-8 -*-
"""
Matthias Bussonnier
Remove old deprecated extensions....
r21453 **DEPRECATED**
Matthias Bussonnier
remove cython extension....
r17910 The cython magic has been integrated into Cython itself,
which is now released in version 0.21.
Bradley M. Froehle
Add %%cython magics to generated documentation.
r8893
Matthias Bussonnier
Fix version string comparison, capitalisation and typos.
r18302 cf github `Cython` organisation, `Cython` repo, under the
Matthias Bussonnier
remove cython extension....
r17910 file `Cython/Build/IpythonMagic.py`
Brian Granger
Adding Cython extension and example notebook.
r7031 """
#-----------------------------------------------------------------------------
# Copyright (C) 2010-2011, IPython Development Team.
#-----------------------------------------------------------------------------
Matthias Bussonnier
Remove old deprecated extensions....
r21453 import warnings
Brian Granger
Adding Cython extension and example notebook.
r7031
Matthias Bussonnier
remove cython extension....
r17910 ## still load the magic in IPython 3.x, remove completely in future versions.
Brian Granger
Adding Cython extension and example notebook.
r7031 def load_ipython_extension(ip):
"""Load the extension in IPython."""
Matthias Bussonnier
Remove old deprecated extensions....
r21453
warnings.warn("""The Cython magic has been moved to the Cython package""")