From 894066522274446ed47d4adb6f53c0b6d454c7bb Mon Sep 17 00:00:00 2001 From: Damus666 Date: Sun, 9 Jun 2024 11:23:14 +0200 Subject: [PATCH] Update exception message --- src_c/circle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src_c/circle.c b/src_c/circle.c index 65acab9a2b..beaee31741 100644 --- a/src_c/circle.c +++ b/src_c/circle.c @@ -47,8 +47,8 @@ pg_circle_init(pgCircleObject *self, PyObject *args, PyObject *kwds) PyErr_SetString( PyExc_TypeError, "Arguments must be a Circle, a sequence of length 3 or 2, or an " - "object with an attribute called 'circle' and the radius must be " - "nonnegative"); + "object with an attribute called 'circle', all with corresponding " + "nonnegative radius argument"); return -1; } return 0;