mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
mpz_float() only takes one parameter now
This commit is contained in:
parent
ff773eba36
commit
dfd59e039a
1 changed files with 0 additions and 5 deletions
|
|
@ -1477,13 +1477,8 @@ mpz_coerce(PyObject **pv, PyObject **pw)
|
||||||
*pw = z;
|
*pw = z;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#ifdef MPZ_CONVERSIONS_AS_METHODS
|
|
||||||
if ((z = mpz_float((mpzobject *)(*pv), NULL)) == NULL)
|
|
||||||
return -1;
|
|
||||||
#else /* def MPZ_CONVERSIONS_AS_METHODS */
|
|
||||||
if ((z = mpz_float((mpzobject *)(*pv))) == NULL)
|
if ((z = mpz_float((mpzobject *)(*pv))) == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
#endif /* def MPZ_CONVERSIONS_AS_METHODS else */
|
|
||||||
|
|
||||||
Py_INCREF(*pw);
|
Py_INCREF(*pw);
|
||||||
*pv = z;
|
*pv = z;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue