Lines Matching refs:sep
292 "b2a_hex($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n"
297 " sep\n"
318 binascii_b2a_hex_impl(PyObject *module, Py_buffer *data, PyObject *sep,
325 static const char * const _keywords[] = {"data", "sep", "bytes_per_sep", NULL};
330 PyObject *sep = NULL;
348 sep = args[1];
358 return_value = binascii_b2a_hex_impl(module, &data, sep, bytes_per_sep);
370 "hexlify($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n"
375 " sep\n"
388 binascii_hexlify_impl(PyObject *module, Py_buffer *data, PyObject *sep,
395 static const char * const _keywords[] = {"data", "sep", "bytes_per_sep", NULL};
400 PyObject *sep = NULL;
418 sep = args[1];
428 return_value = binascii_hexlify_impl(module, &data, sep, bytes_per_sep);