mirror of
https://github.com/python/cpython.git
synced 2025-10-14 18:59:46 +00:00
gh-111178: Fix function signatures for test_os (#131227)
This commit is contained in:
parent
ca7fd814e4
commit
db62557e3d
3 changed files with 11 additions and 6 deletions
|
@ -1731,8 +1731,9 @@ idna_cleanup(struct maybe_idna *data)
|
|||
}
|
||||
|
||||
static int
|
||||
idna_converter(PyObject *obj, struct maybe_idna *data)
|
||||
idna_converter(PyObject *obj, void *arg)
|
||||
{
|
||||
struct maybe_idna *data = (struct maybe_idna*)arg;
|
||||
size_t len;
|
||||
PyObject *obj2;
|
||||
if (obj == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue