diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-05-04 19:28:21 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-05-04 19:28:21 +0000 |
commit | 612344f12774cbbefd735d9fcbfb2001fe187362 (patch) | |
tree | 3be6051c7e4ac7fe3a93372fa3d86bce06072e1f /Python/getargs.c | |
parent | c2b87a6dff1edade6542a484cb9b9419b254c1ed (diff) | |
download | cpython-git-612344f12774cbbefd735d9fcbfb2001fe187362.tar.gz |
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.
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index f7a66048fb..8331a18965 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -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 */ |