Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

""" 

TESTS:: 

  

sage: from sage.misc.cython_c import cython_compile 

doctest:...: DeprecationWarning: the module sage.misc.cython_c has been moved to sage.misc.cython 

See http://trac.sagemath.org/24105 for details. 

sage: cython_compile('''print("Hello World!")''') 

Hello World! 

""" 

from sage.misc.superseded import deprecation 

deprecation(24105, "the module sage.misc.cython_c has been moved to sage.misc.cython") 

  

from .cython import cython_compile