##// END OF EJS Templates
Fix typo...
Giuseppe Venturini -
Show More
@@ -33,8 +33,8 b' except :'
33 def load_ipython_extension(ip):
33 def load_ipython_extension(ip):
34 """Load the extension in IPython."""
34 """Load the extension in IPython."""
35
35
36 print("""The Cython magic has been move to the Cython package, hence """)
36 print("""The Cython magic has been moved to the Cython package, hence """)
37 print("""`%load_ext cythonmagic` is deprecated; Please use `%load_ext Cython` instead.""")
37 print("""`%load_ext cythonmagic` is deprecated; please use `%load_ext Cython` instead.""")
38
38
39 if Cython is None or not version.check_version(Cython.__version__, "0.21"):
39 if Cython is None or not version.check_version(Cython.__version__, "0.21"):
40 print("You need Cython version >=0.21 to use the Cython magic")
40 print("You need Cython version >=0.21 to use the Cython magic")
General Comments 0
You need to be logged in to leave comments. Login now