From: Antoine Pitrou Date: Tue, 11 Oct 2011 02:06:47 +0000 (+0200) Subject: Remove unused variable X-Git-Tag: v3.3.0a1~1232 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=699cd9f7f175b4adb18577ae2e5faed329544713;p=thirdparty%2FPython%2Fcpython.git Remove unused variable --- diff --git a/Modules/_json.c b/Modules/_json.c index f777de5b6d6b..e49d1b2f41ab 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -1126,7 +1126,6 @@ scanner_init(PyObject *self, PyObject *args, PyObject *kwds) PyObject *ctx; static char *kwlist[] = {"context", NULL}; PyScannerObject *s; - _Py_identifier(strict); assert(PyScanner_Check(self)); s = (PyScannerObject *)self;