diff options
Diffstat (limited to 'Objects/clinic/bytesobject.c.h')
-rw-r--r-- | Objects/clinic/bytesobject.c.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Objects/clinic/bytesobject.c.h b/Objects/clinic/bytesobject.c.h index 060056dafbd..4b4a4b39a1f 100644 --- a/Objects/clinic/bytesobject.c.h +++ b/Objects/clinic/bytesobject.c.h @@ -875,9 +875,6 @@ bytes_fromhex(PyTypeObject *type, PyObject *arg) _PyArg_BadArgument("fromhex", "argument", "str", arg); goto exit; } - if (PyUnicode_READY(arg) == -1) { - goto exit; - } string = arg; return_value = bytes_fromhex_impl(type, string); @@ -1063,4 +1060,4 @@ skip_optional_pos: exit: return return_value; } -/*[clinic end generated code: output=31a9e4af85562612 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=7b6e4e8b5bc4eb57 input=a9049054013a1b77]*/ |