]> granicus.if.org Git - python/commitdiff
Remove unused variable, and fix a compilation warning on Windows.
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 15 May 2010 20:35:12 +0000 (20:35 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 15 May 2010 20:35:12 +0000 (20:35 +0000)
Modules/posixmodule.c

index 8ea2b97bf8c47e93a102aced6d09e0f680719b39..33754d298458b390fcb00adaf533cc4f41c3ee6f 100644 (file)
@@ -4062,7 +4062,7 @@ Kill a process with a signal.");
 static PyObject *
 win32_kill(PyObject *self, PyObject *args)
 {
-    PyObject *result, handle_obj;
+    PyObject *result;
     DWORD pid, sig, err;
     HANDLE handle;