mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Change UnicodeDecodeError objects so that the 'object' attribute
is a bytes object. Add 'y' and 'y#' format specifiers that work like 's' and 's#' but only accept bytes objects.
This commit is contained in:
parent
c2b87a6dff
commit
612344f127
5 changed files with 98 additions and 8 deletions
|
@ -819,6 +819,32 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
|||
break;
|
||||
}
|
||||
|
||||
case 'y': {/* bytes */
|
||||
if (*format == '#') {
|
||||
void **p = (void **)va_arg(*p_va, char **);
|
||||
FETCH_SIZE;
|
||||
|
||||
if (PyBytes_Check(arg)) {
|
||||
*p = PyBytes_AS_STRING(arg);
|
||||
STORE_SIZE(PyBytes_GET_SIZE(arg));
|
||||
}
|
||||
else
|
||||
return converterr("bytes", arg, msgbuf, bufsize);
|
||||
format++;
|
||||
} else {
|
||||
char **p = va_arg(*p_va, char **);
|
||||
|
||||
if (PyBytes_Check(arg))
|
||||
*p = PyBytes_AS_STRING(arg);
|
||||
else
|
||||
return converterr("bytes", arg, msgbuf, bufsize);
|
||||
if ((Py_ssize_t)strlen(*p) != PyBytes_Size(arg))
|
||||
return converterr("bytes without null bytes",
|
||||
arg, msgbuf, bufsize);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 'z': {/* string, may be NULL (None) */
|
||||
if (*format == '#') { /* any buffer-like object */
|
||||
void **p = (void **)va_arg(*p_va, char **);
|
||||
|
@ -1595,6 +1621,7 @@ skipitem(const char **p_format, va_list *p_va, int flags)
|
|||
|
||||
case 's': /* string */
|
||||
case 'z': /* string or None */
|
||||
case 'y': /* bytes */
|
||||
case 'u': /* unicode string */
|
||||
case 't': /* buffer, read-only */
|
||||
case 'w': /* buffer, read-write */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue