c71af1789d
Version 1.17 only fixes compatibility with Python 3.x and other C extensions that use gmpy. Version 1.16 fixes a minor issue with the new Decimal type in Python 3.3.
6 lines
355 B
Text
6 lines
355 B
Text
GMPY is a C-coded Python extension module that provides access to the GMP (or
|
|
MPIR) multiple-precision arithmetic library.
|
|
|
|
GMPY allows creation of multiprecision integer (mpz), float (mpf),and rational
|
|
(mpq) numbers, conversion between them and to/from Python numbers/strings,
|
|
arithmetic, bitwise, and some other higher-level mathematical operations999.
|