mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
gh-128863: Deprecate _PyLong_Sign() function (#129176)
Replace _PyLong_Sign() with PyLong_GetSign().
This commit is contained in:
parent
0093a31273
commit
1d485db953
9 changed files with 29 additions and 15 deletions
|
@ -6,6 +6,7 @@ Pending removal in Python 3.18
|
|||
* :c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`.
|
||||
* :c:func:`!_PyDict_GetItemStringWithError`: use :c:func:`PyDict_GetItemStringRef`.
|
||||
* :c:func:`!_PyDict_Pop()`: :c:func:`PyDict_Pop`.
|
||||
* :c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`.
|
||||
* :c:func:`!_PyThreadState_UncheckedGet`: use :c:func:`PyThreadState_GetUnchecked`.
|
||||
* :c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`.
|
||||
* :c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`.
|
||||
|
|
|
@ -1395,6 +1395,7 @@ Deprecated
|
|||
* :c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`.
|
||||
* :c:func:`!_PyDict_GetItemStringWithError`: use :c:func:`PyDict_GetItemStringRef`.
|
||||
* :c:func:`!_PyDict_Pop()`: use :c:func:`PyDict_Pop`.
|
||||
* :c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`.
|
||||
* :c:func:`!_PyThreadState_UncheckedGet`: use :c:func:`PyThreadState_GetUnchecked`.
|
||||
* :c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`.
|
||||
* :c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`.
|
||||
|
|
|
@ -86,7 +86,7 @@ PyAPI_FUNC(int) PyLong_IsZero(PyObject *obj);
|
|||
- On failure, set an exception, and return -1. */
|
||||
PyAPI_FUNC(int) PyLong_GetSign(PyObject *v, int *sign);
|
||||
|
||||
PyAPI_FUNC(int) _PyLong_Sign(PyObject *v);
|
||||
Py_DEPRECATED(3.14) PyAPI_FUNC(int) _PyLong_Sign(PyObject *v);
|
||||
|
||||
/* _PyLong_NumBits. Return the number of bits needed to represent the
|
||||
absolute value of a long. For example, this returns 1 for 1 and -1, 2
|
||||
|
|
|
@ -4,6 +4,7 @@ Python 3.18:
|
|||
* :c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`.
|
||||
* :c:func:`!_PyDict_GetItemStringWithError`: use :c:func:`PyDict_GetItemStringRef`.
|
||||
* :c:func:`!_PyDict_Pop()`: use :c:func:`PyDict_Pop`.
|
||||
* :c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`.
|
||||
* :c:func:`!_PyThreadState_UncheckedGet`: use :c:func:`PyThreadState_GetUnchecked`.
|
||||
* :c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`.
|
||||
* :c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`.
|
||||
|
|
|
@ -2159,8 +2159,10 @@ save_long(PicklerObject *self, PyObject *obj)
|
|||
unsigned char *pdata;
|
||||
char header[5];
|
||||
int i;
|
||||
int sign = _PyLong_Sign(obj);
|
||||
|
||||
int sign;
|
||||
assert(PyLong_Check(obj));
|
||||
(void)PyLong_GetSign(obj, &sign);
|
||||
if (sign == 0) {
|
||||
header[0] = LONG1;
|
||||
header[1] = 0; /* It's 0 -- an empty bytestring. */
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include "pycore_hashtable.h" // _Py_hashtable_new()
|
||||
#include "pycore_initconfig.h" // _Py_GetConfigsAsDict()
|
||||
#include "pycore_instruction_sequence.h" // _PyInstructionSequence_New()
|
||||
#include "pycore_long.h" // _PyLong_Sign()
|
||||
#include "pycore_object.h" // _PyObject_IsFreed()
|
||||
#include "pycore_optimizer.h" // JitOptSymbol, etc.
|
||||
#include "pycore_pathconfig.h" // _PyPathConfig_ClearGlobal()
|
||||
|
@ -1798,14 +1797,14 @@ _testinternalcapi_test_long_numbits_impl(PyObject *module)
|
|||
|
||||
for (i = 0; i < Py_ARRAY_LENGTH(testcases); ++i) {
|
||||
uint64_t nbits;
|
||||
int sign;
|
||||
int sign = -7;
|
||||
PyObject *plong;
|
||||
|
||||
plong = PyLong_FromLong(testcases[i].input);
|
||||
if (plong == NULL)
|
||||
return NULL;
|
||||
nbits = _PyLong_NumBits(plong);
|
||||
sign = _PyLong_Sign(plong);
|
||||
(void)PyLong_GetSign(plong, &sign);
|
||||
|
||||
Py_DECREF(plong);
|
||||
if (nbits != testcases[i].nbits)
|
||||
|
@ -1813,7 +1812,7 @@ _testinternalcapi_test_long_numbits_impl(PyObject *module)
|
|||
"wrong result for _PyLong_NumBits");
|
||||
if (sign != testcases[i].sign)
|
||||
return raiseTestError("test_long_numbits",
|
||||
"wrong result for _PyLong_Sign");
|
||||
"wrong result for PyLong_GetSign()");
|
||||
}
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
|
|
@ -428,9 +428,10 @@ float_richcompare(PyObject *v, PyObject *w, int op)
|
|||
|
||||
else if (PyLong_Check(w)) {
|
||||
int vsign = i == 0.0 ? 0 : i < 0.0 ? -1 : 1;
|
||||
int wsign = _PyLong_Sign(w);
|
||||
int wsign;
|
||||
int exponent;
|
||||
|
||||
(void)PyLong_GetSign(w, &wsign);
|
||||
if (vsign != wsign) {
|
||||
/* Magnitudes are irrelevant -- the signs alone
|
||||
* determine the outcome.
|
||||
|
|
|
@ -827,19 +827,25 @@ PyLong_IsZero(PyObject *obj)
|
|||
return _PyLong_IsZero((PyLongObject *)obj);
|
||||
}
|
||||
|
||||
int
|
||||
_PyLong_Sign(PyObject *vv)
|
||||
static int
|
||||
long_sign(PyObject *vv)
|
||||
{
|
||||
assert(vv != NULL);
|
||||
assert(PyLong_Check(vv));
|
||||
PyLongObject *v = (PyLongObject *)vv;
|
||||
|
||||
assert(v != NULL);
|
||||
assert(PyLong_Check(v));
|
||||
if (_PyLong_IsCompact(v)) {
|
||||
return _PyLong_CompactSign(v);
|
||||
}
|
||||
return _PyLong_NonCompactSign(v);
|
||||
}
|
||||
|
||||
int
|
||||
_PyLong_Sign(PyObject *vv)
|
||||
{
|
||||
return long_sign(vv);
|
||||
}
|
||||
|
||||
int
|
||||
PyLong_GetSign(PyObject *vv, int *sign)
|
||||
{
|
||||
|
@ -848,7 +854,7 @@ PyLong_GetSign(PyObject *vv, int *sign)
|
|||
return -1;
|
||||
}
|
||||
|
||||
*sign = _PyLong_Sign(vv);
|
||||
*sign = long_sign(vv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -399,11 +399,14 @@ _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
|||
step_is_negative = 0;
|
||||
}
|
||||
else {
|
||||
int step_sign;
|
||||
step = evaluate_slice_index(self->step);
|
||||
if (step == NULL)
|
||||
if (step == NULL) {
|
||||
goto error;
|
||||
step_sign = _PyLong_Sign(step);
|
||||
}
|
||||
assert(PyLong_Check(step));
|
||||
|
||||
int step_sign;
|
||||
(void)PyLong_GetSign(step, &step_sign);
|
||||
if (step_sign == 0) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
"slice step cannot be zero");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue