mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #1772673: The type of char*
arguments now changed to const char*
.
This commit is contained in:
parent
80ab13067e
commit
c679227e31
39 changed files with 148 additions and 137 deletions
|
@ -1335,7 +1335,7 @@ min_max(PyObject *args, PyObject *kwds, int op)
|
|||
|
||||
if (positional)
|
||||
v = args;
|
||||
else if (!PyArg_UnpackTuple(args, (char *)name, 1, 1, &v))
|
||||
else if (!PyArg_UnpackTuple(args, name, 1, 1, &v))
|
||||
return NULL;
|
||||
|
||||
emptytuple = PyTuple_New(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue