From f961377e9959fd04a4351316386f15e019e89ebb Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 3 Dec 2010 16:51:33 +0000 Subject: [PATCH] #6780: fix complex() constructor TypeError message --- Objects/complexobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/complexobject.c b/Objects/complexobject.c index c47e0d36614..59997962cef 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -783,7 +783,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) } else if (PyObject_AsCharBuffer(v, &s, &len)) { PyErr_SetString(PyExc_TypeError, - "complex() arg is not a string"); + "complex() argument must be a string or a number"); return NULL; }