commit | c4f281eba3f2b33bc0a7d7172c44f3d1237c09b3 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Oct 11 22:11:42 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Oct 11 22:11:42 2011 +0200 |
tree | 6fb8eb484f53393c9b3fa2f6aa8a00d9c62c2135 | |
parent | ed2682be2f6de05ead5f777ed3aaee92180df4f9 [diff] [blame] |
Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 0378800..fda79fc 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c
@@ -693,7 +693,7 @@ Py_ssize_t rpad; Py_ssize_t total; Py_ssize_t pos; - Py_ssize_t len = PyUnicode_GET_SIZE(value); + Py_ssize_t len = PyUnicode_GET_LENGTH(value); PyObject *result = NULL; int maxchar = 127;