Commit 4a64dcb8 authored by Martín Gaitán's avatar Martín Gaitán

make `%load_ext cython` still valid

parent 3af10546
...@@ -8,7 +8,7 @@ if __name__ == '__main__': ...@@ -8,7 +8,7 @@ if __name__ == '__main__':
import os import os
import sys import sys
# Make sure we import the right Cython # Make sure we import the right Cython
cythonpath, _ = os.path.split(os.path.realpath(__file__)) cythonpath, _ = os.path.split(os.path.realpath(__file__))
sys.path.insert(0, cythonpath) sys.path.insert(0, cythonpath)
...@@ -21,3 +21,4 @@ else: ...@@ -21,3 +21,4 @@ else:
from Cython.Shadow import * from Cython.Shadow import *
## and bring in the __version__ ## and bring in the __version__
from Cython import __version__ from Cython import __version__
from Cython import load_ipython_extension
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment