diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-14 18:56:11 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-14 18:56:11 (GMT) |
commit | 845085703cacab33293898cb183f618d9f580d92 (patch) | |
tree | 606169b79c770a590bf29699b4a908ee300de411 /Include/longobject.h | |
parent | ab0a7527880841bd1a0beb5db6c82fdafde4b4e5 (diff) | |
download | cpython-845085703cacab33293898cb183f618d9f580d92.zip cpython-845085703cacab33293898cb183f618d9f580d92.tar.gz cpython-845085703cacab33293898cb183f618d9f580d92.tar.bz2 |
Change PARSE_PID to _Py_PARSE_PID (cleanup for r78946).
Diffstat (limited to 'Include/longobject.h')
-rw-r--r-- | Include/longobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/longobject.h b/Include/longobject.h index 4dc2e18..6bc8275 100644 --- a/Include/longobject.h +++ b/Include/longobject.h @@ -43,15 +43,15 @@ PyAPI_FUNC(PyObject *) PyLong_GetInfo(void); /* 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" +#define _Py_PARSE_PID "i" #define PyLong_FromPid PyLong_FromLong #define PyLong_AsPid PyLong_AsLong #elif SIZEOF_PID_T == SIZEOF_LONG -#define PARSE_PID "l" +#define _Py_PARSE_PID "l" #define PyLong_FromPid PyLong_FromLong #define PyLong_AsPid PyLong_AsLong #elif defined(SIZEOF_LONG_LONG) && SIZEOF_PID_T == SIZEOF_LONG_LONG -#define PARSE_PID "L" +#define _Py_PARSE_PID "L" #define PyLong_FromPid PyLong_FromLongLong #define PyLong_AsPid PyLong_AsLongLong #else |