From 92a419eea42eeb4dc2821d207d9e43fed38acd7f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 3 Jan 2014 17:39:40 +0100 Subject: [PATCH] Remove now unused variables --- Objects/unicodeobject.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b2279a652d8..a95a35db031 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -2876,10 +2876,6 @@ PyUnicode_AsWideCharString(PyObject *unicode, PyObject * PyUnicode_FromOrdinal(int ordinal) { - PyObject *v; - void *data; - int kind; - if (ordinal < 0 || ordinal > MAX_UNICODE) { PyErr_SetString(PyExc_ValueError, "chr() arg not in range(0x110000)"); @@ -11330,7 +11326,6 @@ unicode_getitem(PyObject *self, Py_ssize_t index) void *data; enum PyUnicode_Kind kind; Py_UCS4 ch; - PyObject *res; if (!PyUnicode_Check(self) || PyUnicode_READY(self) == -1) { PyErr_BadArgument();