summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-11 02:06:47 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-11 02:06:47 (GMT)
commit699cd9f7f175b4adb18577ae2e5faed329544713 (patch)
tree86b6adeee52cb7776779f476afcfb91997b8f2c2 /Modules
parent28716985466df10b7eb1ad34816e2d273b228b07 (diff)
downloadcpython-699cd9f7f175b4adb18577ae2e5faed329544713.zip
cpython-699cd9f7f175b4adb18577ae2e5faed329544713.tar.gz
cpython-699cd9f7f175b4adb18577ae2e5faed329544713.tar.bz2
Remove unused variable
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_json.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_json.c b/Modules/_json.c
index f777de5..e49d1b2 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;