[Python-checkins] r81204 - python/branches/py3k/Modules/posixmodule.c

amaury.forgeotdarc python-checkins at python.org
Sat May 15 22:35:12 CEST 2010


Author: amaury.forgeotdarc
Date: Sat May 15 22:35:12 2010
New Revision: 81204

Log:
Remove unused variable, and fix a compilation warning on Windows.


Modified:
   python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Sat May 15 22:35:12 2010
@@ -4062,7 +4062,7 @@
 static PyObject *
 win32_kill(PyObject *self, PyObject *args)
 {
-    PyObject *result, handle_obj;
+    PyObject *result;
     DWORD pid, sig, err;
     HANDLE handle;
 


More information about the Python-checkins mailing list