summaryrefslogtreecommitdiffstats
path: root/Modules/threadmodule.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-06-13 16:06:55 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-06-13 16:06:55 (GMT)
commit6d7db6ecc4880f0e3a777fb04c8c02cce4eb4a31 (patch)
tree0eccc542dd55c19e20b1d7b00f422df429b8a238 /Modules/threadmodule.c
parent9291332de137141057591386b4ba449ae3a5ed48 (diff)
downloadcpython-6d7db6ecc4880f0e3a777fb04c8c02cce4eb4a31.zip
cpython-6d7db6ecc4880f0e3a777fb04c8c02cce4eb4a31.tar.gz
cpython-6d7db6ecc4880f0e3a777fb04c8c02cce4eb4a31.tar.bz2
Remove unused variable.
Diffstat (limited to 'Modules/threadmodule.c')
-rw-r--r--Modules/threadmodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c
index fd0bd08..448b11c 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))