Lines Matching defs:table
8360 /* Charmap encoding: the lookup table */
13421 Return a translation table usable for str.translate().
13509 "table must be of length 1");
13526 PyErr_SetString(PyExc_TypeError, "keys in translate table must "
13541 table: object
13542 Translation table, which must be a mapping of Unicode ordinals to
13546 Replace each character in the string using the given translation table.
13548 The table must implement lookup/indexing via __getitem__, for instance a
13554 unicode_translate(PyObject *self, PyObject *table)
13557 return _PyUnicode_TranslateCharmap(self, table, "ignore");