Lines Matching defs:string
114 "Return a bytearray with the given prefix string removed if present.\n"
116 "If the bytearray starts with the prefix string, return\n"
154 "Return a bytearray with the given suffix string removed if present.\n"
156 "If the bytearray ends with the suffix string and that suffix is not\n"
955 "fromhex($type, string, /)\n"
958 "Create a bytearray object from a string of hexadecimal numbers.\n"
967 bytearray_fromhex_impl(PyTypeObject *type, PyObject *string);
973 PyObject *string;
982 string = arg;
983 return_value = bytearray_fromhex_impl(type, string);
993 "Create a string of hexadecimal numbers from a bytearray object.\n"