Lines Matching defs:prefix
12835 prefix: unicode
12838 Return a str with the given prefix string removed if present.
12840 If the string starts with the prefix string, return string[len(prefix):].
12845 unicode_removeprefix_impl(PyObject *self, PyObject *prefix)
12848 int match = tailmatch(self, prefix, 0, PY_SSIZE_T_MAX, -1);
12853 return PyUnicode_Substring(self, PyUnicode_GET_LENGTH(prefix),
13626 "S.startswith(prefix[, start[, end]]) -> bool\n\
13628 Return True if S starts with the specified prefix, False otherwise.\n\
13631 prefix can also be a tuple of strings to try.");
14845 /* Ignore "h", "l" and "L" format prefix (ex: "%hi" or "%ls") */
15079 /* Write the numeric prefix for "x", "X" and "o" formats
15105 /* If padding with spaces: write sign if needed and/or numeric prefix if