diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-10-28 15:06:13 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-10-28 15:06:13 +0200 |
commit | 908ae24b066b04651701d5ee5e5d80cfb5d6b018 (patch) | |
tree | 655c5cd3fef85650fda47f8f34f8ad5db5d17e08 /Python/bltinmodule.c | |
parent | Merge 3.2 (diff) | |
parent | Remove unused variable. (diff) | |
download | cpython-908ae24b066b04651701d5ee5e5d80cfb5d6b018.tar.gz cpython-908ae24b066b04651701d5ee5e5d80cfb5d6b018.tar.bz2 cpython-908ae24b066b04651701d5ee5e5d80cfb5d6b018.zip |
Merge 3.2 (linked to issue #1294232)
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index fd242b7408e..0c14d7e3261 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -40,7 +40,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; _Py_IDENTIFIER(__prepare__); |