summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-09-28 19:49:49 (GMT)
committerGeorg Brandl <georg@python.org>2011-09-28 19:49:49 (GMT)
commit4cb0de246cacc2c4259f7b05529abbcf7ba8e2ff (patch)
tree35049b7aa75b2295b38e0150ecbe509b12c1830f /Include
parent5ce1b0dbc0fbad355086882ebb54f1aebc6b7163 (diff)
downloadcpython-4cb0de246cacc2c4259f7b05529abbcf7ba8e2ff.zip
cpython-4cb0de246cacc2c4259f7b05529abbcf7ba8e2ff.tar.gz
cpython-4cb0de246cacc2c4259f7b05529abbcf7ba8e2ff.tar.bz2
Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY").
Diffstat (limited to 'Include')
-rw-r--r--Include/Python.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/Python.h b/Include/Python.h
index aa1a2b2..051deae 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -160,9 +160,9 @@ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
#define PyDoc_STR(str) ""
#endif
-#define PY_ARRAY_LENGTH(array) (sizeof(array) / sizeof((array)[0]))
+#define Py_ARRAY_LENGTH(array) (sizeof(array) / sizeof((array)[0]))
-#define PY_MIN(x, y) (((x) > (y)) ? (y) : (x))
-#define PY_MAX(x, y) (((x) > (y)) ? (x) : (y))
+#define Py_MIN(x, y) (((x) > (y)) ? (y) : (x))
+#define Py_MAX(x, y) (((x) > (y)) ? (x) : (y))
#endif /* !Py_PYTHON_H */