]> granicus.if.org Git - python/commitdiff
Remove unused variable.
authorFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 28 Oct 2011 13:00:50 +0000 (15:00 +0200)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 28 Oct 2011 13:00:50 +0000 (15:00 +0200)
Python/bltinmodule.c

index 9c50b88da8dfb0db98b6248d020fbd1c418dd6a3..d05232c34af592a56d21cdf93d5746423b6db948 100644 (file)
@@ -37,7 +37,7 @@ builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)
 {
     PyObject *func, *name, *bases, *mkw, *meta, *winner, *prep, *ns, *cell;
     PyObject *cls = NULL;
-    Py_ssize_t nargs, nbases;
+    Py_ssize_t nargs;
     int isclass;
 
     assert(args != NULL);
@@ -62,7 +62,6 @@ builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)
     bases = PyTuple_GetSlice(args, 2, nargs);
     if (bases == NULL)
         return NULL;
-    nbases = nargs - 2;
 
     if (kwds == NULL) {
         meta = NULL;