[Python-checkins] cpython: Remove unused variable

antoine.pitrou python-checkins at python.org
Tue Oct 11 04:10:31 CEST 2011


http://hg.python.org/cpython/rev/8ed6a627a834
changeset:   72852:8ed6a627a834
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Tue Oct 11 04:06:47 2011 +0200
summary:
  Remove unused variable

files:
  Modules/_json.c |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Modules/_json.c b/Modules/_json.c
--- a/Modules/_json.c
+++ b/Modules/_json.c
@@ -1126,7 +1126,6 @@
     PyObject *ctx;
     static char *kwlist[] = {"context", NULL};
     PyScannerObject *s;
-    _Py_identifier(strict);
 
     assert(PyScanner_Check(self));
     s = (PyScannerObject *)self;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list