Index: Python/getargs.c =================================================================== --- Python/getargs.c (révision 81840) +++ Python/getargs.c (copie de travail) @@ -1014,11 +1014,6 @@ if (arg == Py_None) *p = 0; - else if (PyBytes_Check(arg)) { - /* Enable null byte check below */ - uarg = arg; - *p = PyBytes_AS_STRING(arg); - } else if (PyUnicode_Check(arg)) { uarg = UNICODE_DEFAULT_ENCODING(arg); if (uarg == NULL)