# HG changeset patch
# User Jean-Pierre Flori <jean-pierre.flor@ssi.gouv.fr>
# Date 1338977133 -7200
# Node ID 8c69bd678d1e911dba9c190ab2c86cad87a72bf3
# Parent d45887691fb30797f5d43e97bf1be26d6d0c993b
#12173: use _fmpz_cleanup_mpz_content instead of _fmpz_cleanup
diff --git a/sage/libs/flint/flint.pxd b/sage/libs/flint/flint.pxd
a
|
b
|
|
5 | 5 | |
6 | 6 | cdef unsigned long FLINT_BIT_COUNT(unsigned long) |
7 | 7 | void _fmpz_cleanup() |
| 8 | void _fmpz_cleanup_mpz_content() |
diff --git a/sage/libs/flint/flint.pyx b/sage/libs/flint/flint.pyx
a
|
b
|
|
14 | 14 | include "../../ext/cdefs.pxi" |
15 | 15 | |
16 | 16 | def free_flint_stack(): |
17 | | _fmpz_cleanup() |
| 17 | _fmpz_cleanup_mpz_content() |