Lines Matching refs:fastargs
16 PyObject * const *fastargs; in bytearray___init__() local
23 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 3… in bytearray___init__()
24 if (!fastargs) { in bytearray___init__()
30 if (fastargs[0]) { in bytearray___init__()
31 arg = fastargs[0]; in bytearray___init__()
36 if (fastargs[1]) { in bytearray___init__()
37 if (!PyUnicode_Check(fastargs[1])) { in bytearray___init__()
38 _PyArg_BadArgument("bytearray", "argument 'encoding'", "str", fastargs[1]); in bytearray___init__()
42 encoding = PyUnicode_AsUTF8AndSize(fastargs[1], &encoding_length); in bytearray___init__()
54 if (!PyUnicode_Check(fastargs[2])) { in bytearray___init__()
55 _PyArg_BadArgument("bytearray", "argument 'errors'", "str", fastargs[2]); in bytearray___init__()
59 errors = PyUnicode_AsUTF8AndSize(fastargs[2], &errors_length); in bytearray___init__()