[Python-checkins] r60504 - python/trunk/Modules/posixmodule.c

Thomas Heller theller at ctypes.org
Fri Feb 1 20:10:07 CET 2008


> Author: christian.heimes
> Date: Fri Feb  1 19:49:26 2008
> New Revision: 60504
> 
> Modified:
>    python/trunk/Modules/posixmodule.c
> Log:
> More int -> pid_t.
> 
> -	int pid, sig;
> +	pid_t pid;
> +	int sig;
>  	if (!PyArg_ParseTuple(args, "ii:kill", &pid, &sig))
>  		return NULL;

Hm, what happens if sizeof(pid_t) != sizeof(int) ?



More information about the Python-checkins mailing list