commit | 0d03478b88747d25dd6198d0573e3d63caee6c0e | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Tue Mar 06 02:06:01 2012 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Tue Mar 06 02:06:01 2012 +0100 |
tree | 01350efa94d5bcd9ef984692fb088efc1dcc26fd | |
parent | b1f7f6343b2098d69ee421032b1feb4e6ebc7c73 [diff] |
Remove an unused variable
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b756afc..5c10713 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -3935,7 +3935,6 @@ int PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch) { - Py_UCS4 maxchar; if (!PyUnicode_Check(unicode) || !PyUnicode_IS_COMPACT(unicode)) { PyErr_BadArgument(); return -1;