[Python-checkins] r78946 - in python/branches/py3k: Doc/library/subprocess.rstInclude/abstract.h Include/longobject.h Include/pythonrun.h Lib/subprocess.py Lib/test/test_subprocess.pyModules/_posixsubprocess.c Modules/posixmodule.c Objects/abstract.c Python/pythonrun.c setup.py

Antoine Pitrou solipsis at pitrou.net
Sun Mar 14 16:30:21 CET 2010


[in longobject.h]
> +/* Issue #1983: pid_t can be longer than a C long on some systems */
> +#if !defined(SIZEOF_PID_T) || SIZEOF_PID_T == SIZEOF_INT
> +#define PARSE_PID "i"

I'm not sure it is ok to define symbols not beginning with Py or _Py in a public
header file.


Antoine.




More information about the Python-checkins mailing list