From: Georg Brandl Date: Sun, 5 Apr 2009 11:54:07 +0000 (+0000) Subject: #5580: no need to use parentheses when converterr() argument is actually a type descr... X-Git-Tag: v2.7a1~1563 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c59e72576c37d4452c47ba84c9f7d98c2681a8f;p=python #5580: no need to use parentheses when converterr() argument is actually a type description. --- diff --git a/Python/getargs.c b/Python/getargs.c index 544948b928..d24857d29c 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);