idasit/dbus_fast/_private/_cython_compat.py

13 lines
211 B
Python
Raw Permalink Normal View History

2024-12-14 14:55:37 +01:00
"""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()