Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit c6ef641

Browse files
committed
Add a %%cython cell magic
1 parent 093e42f commit c6ef641

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

src/sage/misc/cython_c.pyx

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from sage.misc.temporary_file import tmp_filename
44
from sage.misc.cython import cython_import_all
5+
from sage.repl.user_globals import get_globals
6+
57

68
def cython_compile(code,
79
verbose=False, compile_message=False,
@@ -60,7 +62,7 @@ def cython_compile(code,
6062
"""
6163
tmpfile = tmp_filename(ext=".spyx")
6264
open(tmpfile,'w').write(code)
63-
cython_import_all(tmpfile, globals(),
65+
cython_import_all(tmpfile, get_globals(),
6466
verbose=verbose, compile_message=compile_message,
6567
use_cache=use_cache,
6668
create_local_c_file=False)

src/sage/repl/ipython_extension.py

+35-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
1616
- ``%mode`` (like ``%maxima``, etc.)
1717
18+
- ``%%cython``
19+
1820
* preparsing of input
1921
2022
* loading Sage library
@@ -56,7 +58,7 @@
5658
sage: shell.quit()
5759
"""
5860

59-
from IPython.core.magic import Magics, magics_class, line_magic
61+
from IPython.core.magic import Magics, magics_class, line_magic, cell_magic
6062

6163
from sage.repl.load import load_wrap
6264
from sage.env import SAGE_IMPORTALL, SAGE_STARTUP_FILE
@@ -321,6 +323,38 @@ def display(self, args):
321323
except ValueError as err:
322324
print(err) # do not show traceback
323325

326+
@cell_magic
327+
def cython(self, line, cell):
328+
"""
329+
Cython cell magic
330+
331+
This is syntactic sugar on the
332+
:func:`~sage.misc.cython_c.cython` function.
333+
334+
INPUT::
335+
336+
- ``line`` -- ignored.
337+
338+
- ``cell`` -- string. The Cython source code to process.
339+
340+
OUTPUT:
341+
342+
None. The Cython code is compiled and loaded.
343+
344+
EXAMPLES::
345+
346+
sage: from sage.repl.interpreter import get_test_shell
347+
sage: shell = get_test_shell()
348+
sage: shell.run_cell('''
349+
....: %%cython
350+
....: def f():
351+
....: print('test')
352+
....: ''')
353+
....: shell.run_cell('f()')
354+
"""
355+
from sage.misc.cython_c import cython_compile
356+
return cython_compile(cell)
357+
324358

325359
class SageCustomizations(object):
326360

0 commit comments

Comments
 (0)