Files
chatmail-core/python/src/deltachat/const.py
Floris Bruynooghe d8bd9b0515 Import constants from cffi
This replaces the constants list with those compiled by CFFI.  There
is perhaps not much point in having this module anymore but this is
easy to do.
2020-06-11 09:22:31 +02:00

8 lines
131 B
Python

from .capi import lib
for name in dir(lib):
if name.startswith("DC_"):
globals()[name] = getattr(lib, name)
del name