From: Brett Cannon Date: Tue, 13 Jun 2006 16:06:55 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v2.5b1~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d7db6ecc4880f0e3a777fb04c8c02cce4eb4a31;p=thirdparty%2FPython%2Fcpython.git Remove unused variable. --- diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index fd0bd085a468..448b11cd67ad 100644 --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -591,7 +591,6 @@ thread_stack_size(PyObject *self, PyObject *args) { size_t old_size; Py_ssize_t new_size = 0; - PyObject *set_size = NULL; int rc; if (!PyArg_ParseTuple(args, "|n:stack_size", &new_size))