13 lines
211 B
Python
13 lines
211 B
Python
|
"""Stub for when Cython is not available."""
|
||
|
|
||
|
|
||
|
class FakeCython:
|
||
|
"""Stub for when Cython is not available."""
|
||
|
|
||
|
@property
|
||
|
def compiled(self) -> bool:
|
||
|
return False
|
||
|
|
||
|
|
||
|
FAKE_CYTHON = FakeCython()
|