commit | 639418812f11749f99d1160b26325bdfa3a26a6f | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Thu Sep 29 00:42:28 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Thu Sep 29 00:42:28 2011 +0200 |
tree | eb438b6f5e06b7a5144567ff5c95c190bf850cc1 | |
parent | b9dcffb51e0075f70434febb6ea557cc4d22f5fd [diff] [blame] |
Use the new Py_ARRAY_LENGTH macro
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 2e36c73..f1eac91 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c
@@ -1593,7 +1593,7 @@ {-0xfffffffL, 28, -1}}; int i; - for (i = 0; i < sizeof(testcases) / sizeof(struct triple); ++i) { + for (i = 0; i < Py_ARRAY_LENGTH(testcases); ++i) { PyObject *plong = PyLong_FromLong(testcases[i].input); size_t nbits = _PyLong_NumBits(plong); int sign = _PyLong_Sign(plong);