idasit/dbus_fast/_private/_cython_compat.py
bparodi@lezzo.org 41c244e903 first commit
2024-12-14 14:55:37 +01:00

12 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()