From: Hai Shi Date: Sun, 24 May 2020 05:03:50 +0000 (+0800) Subject: Remove spurious NULL in descrobject.c (GH-20344) X-Git-Tag: v3.10.0a1~845 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f5f61409ebf95fa606bcbb15dfaaadad6084dc6;p=thirdparty%2FPython%2Fcpython.git Remove spurious NULL in descrobject.c (GH-20344) Co-authored-by: hai shi --- diff --git a/Objects/descrobject.c b/Objects/descrobject.c index c29cf7a4c446..fce9cdd30907 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -360,7 +360,6 @@ method_vectorcall_FASTCALL_KEYWORDS_METHOD( if (method_check_args(func, args, nargs, NULL)) { return NULL; } - NULL; PyCMethod meth = (PyCMethod) method_enter_call(tstate, func); if (meth == NULL) { return NULL;