1
2"""
3>>> pxd_sqrt(9)
43.0
5"""
6
7import cython
8
9if not cython.compiled:
10    from math import sqrt as pxd_sqrt
11
12
13@cython.test_assert_path_exists('//SimpleCallNode/NameNode[@type.is_pyobject = False]')
14def call_pxd_sqrt(x):
15    """
16    >>> call_pxd_sqrt(9)
17    3.0
18    """
19    return pxd_sqrt(x)
20