1 """Low-level arithmetics support.
3 Arithmetic package provides:
5 * low-level number types ``mpq``, ``mpf``, ``mpqc``, ``mpc``
6 * base class ``Infinity`` for extended numbers
7 * various low-level number theory functions: ``gcd``, ``multinomial_coefficients``, etc.
10 __docformat__
= "restructuredtext"
13 from .numbers
import mpq
, mpf
, mpqc
, mpc
, setdps
, getdps
14 from .number_theory
import gcd
, lcm
, multinomial_coefficients
, f2q
15 from .infinity
import Infinity