Lines Matching defs:table
355 "translate($self, table, /, delete=b\'\')\n"
358 "Return a copy with each character mapped by the given translation table.\n"
360 " table\n"
361 " Translation table, which must be a bytes object of length 256.\n"
364 "The remaining characters are mapped through the given translation table.");
370 bytes_translate_impl(PyBytesObject *self, PyObject *table,
381 PyObject *table;
388 table = args[0];
394 return_value = bytes_translate_impl(self, table, deletechars);
404 "Return a translation table useable for the bytes or bytearray translate method.\n"
406 "The returned table will be one where each byte in frm is mapped to the byte at\n"