mirror of https://github.com/python/cpython
Remove unused variable, and fix a compilation warning on Windows.
This commit is contained in:
parent
558cd64de0
commit
0a589c9898
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue