Lines Matching defs:table
191 "translate($self, table, /, delete=b\'\')\n"
194 "Return a copy with each character mapped by the given translation table.\n"
196 " table\n"
197 " Translation table, which must be a bytes object of length 256.\n"
200 "The remaining characters are mapped through the given translation table.");
206 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
217 PyObject *table;
224 table = args[0];
230 return_value = bytearray_translate_impl(self, table, deletechars);
240 "Return a translation table useable for the bytes or bytearray translate method.\n"
242 "The returned table will be one where each byte in frm is mapped to the byte at\n"