summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/pure/py_cimport.py
blob: 233ddde7ec141a4f710ece3b4675e2f5e5e9fcd0 (plain)
1
2
3
4
5

from cython.cimports.libc import math

def use_libc_math():
    return math.ceil(5.5)