diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-29 00:42:28 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-29 00:42:28 +0200 |
| commit | 639418812f11749f99d1160b26325bdfa3a26a6f (patch) | |
| tree | eb438b6f5e06b7a5144567ff5c95c190bf850cc1 /Modules/unicodedata.c | |
| parent | b9dcffb51e0075f70434febb6ea557cc4d22f5fd (diff) | |
| download | cpython-git-639418812f11749f99d1160b26325bdfa3a26a6f.tar.gz | |
Use the new Py_ARRAY_LENGTH macro
Diffstat (limited to 'Modules/unicodedata.c')
| -rw-r--r-- | Modules/unicodedata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index d917f91e6f..f636590f0b 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -439,7 +439,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args) from Tools/unicode/makeunicodedata.py, it should not be possible to overflow decomp_prefix. */ prefix_index = decomp_data[index] & 255; - assert(prefix_index < (sizeof(decomp_prefix)/sizeof(*decomp_prefix))); + assert(prefix_index < Py_ARRAY_LENGTH(decomp_prefix)); /* copy prefix */ i = strlen(decomp_prefix[prefix_index]); |
