From 6c59e72576c37d4452c47ba84c9f7d98c2681a8f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 5 Apr 2009 11:54:07 +0000 Subject: #5580: no need to use parentheses when converterr() argument is actually a type description. --- Python/getargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v0.12