Skip to content

Commit 65ac273

Browse files
authored
Remove ANY_VARARGS() macro from the C API (#93764)
The macro was exposed by mistake.
1 parent 272bec4 commit 65ac273

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Include/cpython/modsupport.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ PyAPI_FUNC(int) _PyArg_NoPositional(const char *funcname, PyObject *args);
3434
#define _PyArg_NoPositional(funcname, args) \
3535
((args) == NULL || _PyArg_NoPositional((funcname), (args)))
3636

37+
#define _Py_ANY_VARARGS(n) (n == PY_SSIZE_T_MAX)
38+
3739
PyAPI_FUNC(void) _PyArg_BadArgument(const char *, const char *, const char *, PyObject *);
3840
PyAPI_FUNC(int) _PyArg_CheckPositional(const char *, Py_ssize_t,
3941
Py_ssize_t, Py_ssize_t);
4042
#define _PyArg_CheckPositional(funcname, nargs, min, max) \
41-
((!ANY_VARARGS(max) && (min) <= (nargs) && (nargs) <= (max)) \
43+
((!_Py_ANY_VARARGS(max) && (min) <= (nargs) && (nargs) <= (max)) \
4244
|| _PyArg_CheckPositional((funcname), (nargs), (min), (max)))
4345

4446
PyAPI_FUNC(PyObject **) _Py_VaBuildStack(

Include/modsupport.h

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ PyAPI_FUNC(PyObject *) Py_BuildValue(const char *, ...);
3737
PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...);
3838

3939

40-
#define ANY_VARARGS(n) (n == PY_SSIZE_T_MAX)
41-
4240
PyAPI_FUNC(PyObject *) Py_VaBuildValue(const char *, va_list);
4341

4442
// Add an attribute with name 'name' and value 'obj' to the module 'mod.

0 commit comments

Comments
 (0)