diff options
author | Georg Brandl <georg@python.org> | 2009-04-05 11:54:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-05 11:54:07 (GMT) |
commit | 6c59e72576c37d4452c47ba84c9f7d98c2681a8f (patch) | |
tree | 00af81dd1eb09a7d9d80d1d0e5ca84724e33958d /Python | |
parent | d3eaa745a95c814061fd5962d9d887ea5b2af9f0 (diff) | |
download | cpython-6c59e72576c37d4452c47ba84c9f7d98c2681a8f.zip cpython-6c59e72576c37d4452c47ba84c9f7d98c2681a8f.tar.gz cpython-6c59e72576c37d4452c47ba84c9f7d98c2681a8f.tar.bz2 |
#5580: no need to use parentheses when converterr() argument is actually a type description.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 544948b..d24857d 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -1108,7 +1108,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, != size) { Py_DECREF(s); return converterr( - "(encoded string without NULL bytes)", + "encoded string without NULL bytes", arg, msgbuf, bufsize); } *buffer = PyMem_NEW(char, size + 1); |