flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
import flint2

CC = flint2.CC

__exclude = set(["prec"])

__globals = globals()
for __obj in set(dir(CC)) - __exclude:
    if __obj not in __exclude:
        __globals[__obj] = getattr(CC, __obj)