MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _all_cython_modules

Function _all_cython_modules

lib/sqlalchemy/util/_has_cython.py:12–32  ·  view source on GitHub ↗

Returns all modules that can be compiled using cython. Call ``_is_compiled()`` to check if the module is compiled or not.

()

Source from the content-addressed store, hash-verified

10
11
12def _all_cython_modules():
13 """Returns all modules that can be compiled using cython.
14 Call ``_is_compiled()`` to check if the module is compiled or not.
15 """
16 from . import _collections_cy
17 from . import _immutabledict_cy
18 from ..engine import _processors_cy
19 from ..engine import _result_cy
20 from ..engine import _row_cy
21 from ..engine import _util_cy as engine_util
22 from ..sql import _util_cy as sql_util
23
24 return (
25 _collections_cy,
26 _immutabledict_cy,
27 _processors_cy,
28 _result_cy,
29 _row_cy,
30 engine_util,
31 sql_util,
32 )
33
34
35_CYEXTENSION_MSG: str

Callers 3

_has_cython.pyFile · 0.85

Calls

no outgoing calls

Tested by 2