diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 01:49:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-21 01:49:52 (GMT) |
commit | 9e30aa52fd416e17b692c4f22e57191cdd6ec654 (patch) | |
tree | f3b1c85f5cdbb6a32ec8f309400e8d3e1c2bbfaf /Modules/_csv.c | |
parent | f3ae6208c706bae89d86df44c7c3dcac1bdcd94d (diff) | |
download | cpython-9e30aa52fd416e17b692c4f22e57191cdd6ec654.zip cpython-9e30aa52fd416e17b692c4f22e57191cdd6ec654.tar.gz cpython-9e30aa52fd416e17b692c4f22e57191cdd6ec654.tar.bz2 |
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
And PyUnicode_GetSize() => PyUnicode_GetLength()
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r-- | Modules/_csv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index c02ee38..443309c 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -207,7 +207,7 @@ _set_char(const char *name, Py_UCS4 *target, PyObject *src, Py_UCS4 dflt) *target = '\0'; if (src != Py_None) { Py_ssize_t len; - len = PyUnicode_GetSize(src); + len = PyUnicode_GetLength(src); if (len > 1) { PyErr_Format(PyExc_TypeError, "\"%s\" must be an 1-character string", |