]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove spurious NULL in descrobject.c (GH-20344)
authorHai Shi <shihai1992@gmail.com>
Sun, 24 May 2020 05:03:50 +0000 (13:03 +0800)
committerGitHub <noreply@github.com>
Sun, 24 May 2020 05:03:50 +0000 (06:03 +0100)
Co-authored-by: hai shi <shihai1991@126.com>
Objects/descrobject.c

index c29cf7a4c44640d6c6f170779df204c1b8a9b27a..fce9cdd309077ea27b435b229cafae4185c06e33 100644 (file)
@@ -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;