mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 13:36:30 +03:00
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.
8 lines
131 B
Python
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
|