diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-03-06 02:06:01 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-03-06 02:06:01 +0100 |
commit | 0d03478b88747d25dd6198d0573e3d63caee6c0e (patch) | |
tree | 01350efa94d5bcd9ef984692fb088efc1dcc26fd /Objects/unicodeobject.c | |
parent | b1f7f6343b2098d69ee421032b1feb4e6ebc7c73 (diff) | |
download | cpython-git-0d03478b88747d25dd6198d0573e3d63caee6c0e.tar.gz |
Remove an unused variable
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b756afc526..5c1071325d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -3935,7 +3935,6 @@ PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index) 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; |