Returns all modules that can be compiled using cython. Call ``_is_compiled()`` to check if the module is compiled or not.
()
| 10 | |
| 11 | |
| 12 | def _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 |
no outgoing calls