Lines Matching defs:prefix
975 /* Write the numeric prefix for "x", "X" and "o" formats
999 prefix if the alternate form is used */
2223 prefix: Py_buffer
2226 Return a bytes object with the given prefix string removed if present.
2228 If the bytes starts with the prefix string, return bytes[len(prefix):].
2233 bytes_removeprefix_impl(PyBytesObject *self, Py_buffer *prefix)
2238 const char *prefix_start = prefix->buf;
2239 Py_ssize_t prefix_len = prefix->len;
2266 return bytes[:-len(prefix)]. Otherwise, return a copy of the original