From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 24 May 2020 05:24:56 +0000 (-0700) Subject: Remove spurious NULL in descrobject.c (GH-20344) X-Git-Tag: v3.9.0b2~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3c3e8920af292f6c16425efc80aa764e1305f59;p=thirdparty%2FPython%2Fcpython.git Remove spurious NULL in descrobject.c (GH-20344) Co-authored-by: hai shi (cherry picked from commit 3f5f61409ebf95fa606bcbb15dfaaadad6084dc6) 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;