diff options
author | Guido van Rossum <guido@python.org> | 1998-05-29 02:59:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-29 02:59:00 (GMT) |
commit | 9396673a58811d9cba74080217c9210805ade72c (patch) | |
tree | db01c06e136b98bb976e480ef243dccf9135073a | |
parent | 3c8c5981b18948b5ddfc0ef3bcf0a6e000bb59b4 (diff) | |
download | cpython-9396673a58811d9cba74080217c9210805ade72c.zip cpython-9396673a58811d9cba74080217c9210805ade72c.tar.gz cpython-9396673a58811d9cba74080217c9210805ade72c.tar.bz2 |
Remove a few unused locals (I love VC++ for this!).
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 7ca72ed..3aba792 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -878,7 +878,6 @@ builtin_int(self, args) PyObject *args; { PyObject *v; - PyNumberMethods *nb; if (!PyArg_ParseTuple(args, "O:int", &v)) return NULL; @@ -1371,7 +1370,6 @@ builtin_tuple(self, args) PyObject *args; { PyObject *v; - PySequenceMethods *sqf; if (!PyArg_ParseTuple(args, "O:tuple", &v)) return NULL; |