Skip to content

Commit 3068d92

Browse files
committed
release
1 parent 781df04 commit 3068d92

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ shouldn't crash the interpreter! It requires Python 3.9 or later versions and
66
has been tested with CPython 3.9 through 3.14 and for PyPy 3.10 and 3.11.
77

88
This module can be used as a gmpy2/python-flint replacement to provide
9-
CPython-compatible integer (mpz) and rational (mpq) types. The module includes
10-
also few functions (factorial, gcd and isqrt), compatible with the stdlib's
11-
module math.
9+
CPython-compatible integer (mpz) and rational (mpq) types. It includes few
10+
functions (factorial, gcd and isqrt), compatible with the stdlib's module math.
1211

13-
Releases are available in the Python Package Index at
12+
Releases are available in the Python Package Index (PyPI) at
1413
https://pypi.org/project/python-gmp/
1514

1615

@@ -22,6 +21,8 @@ This module can't prevent a crash in case of a stack overflow. To avoid this,
2221
you should compile the GMP library with '--disable-alloca' configure option to
2322
use rather the heap for all temporary allocations.
2423

24+
Of course, published on the PyPI binary wheels aren't affected by this issue.
25+
2526

2627
Warning on using mp_set_memory_functions()
2728
------------------------------------------

main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,6 @@ MPZ_mul(const MPZ_Object *u, const MPZ_Object *v)
839839
/* LCOV_EXCL_STOP */
840840
}
841841
}
842-
MPZ_normalize(res);
843842
res->size -= (res->digits[res->size - 1] == 0);
844843
return res;
845844
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["gmp", "multiple-precision", "arbitrary-precision", "bignum"]
1010
license = {text = "MIT"}
1111
authors = [{name = "Sergey B Kirpichev", email = "[email protected]"}]
1212
maintainers = [{name = "Sergey B Kirpichev", email = "[email protected]"}]
13-
classifiers = ["Development Status :: 2 - Pre-Alpha",
13+
classifiers = ["Development Status :: 3 - Alpha",
1414
"Intended Audience :: Developers",
1515
"Intended Audience :: Science/Research",
1616
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)