]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused variable
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 11 Oct 2011 02:06:47 +0000 (04:06 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 11 Oct 2011 02:06:47 +0000 (04:06 +0200)
Modules/_json.c

index f777de5b6d6b425557092ac8c040b5713f3c4a47..e49d1b2f41ab03b58910f4f7d1bec24d0197cfd1 100644 (file)
@@ -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;