diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-11 02:06:47 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-11 02:06:47 (GMT) |
commit | 699cd9f7f175b4adb18577ae2e5faed329544713 (patch) | |
tree | 86b6adeee52cb7776779f476afcfb91997b8f2c2 /Modules | |
parent | 28716985466df10b7eb1ad34816e2d273b228b07 (diff) | |
download | cpython-699cd9f7f175b4adb18577ae2e5faed329544713.zip cpython-699cd9f7f175b4adb18577ae2e5faed329544713.tar.gz cpython-699cd9f7f175b4adb18577ae2e5faed329544713.tar.bz2 |
Remove unused variable
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_json.c | 1 |
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; |