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