From: Brian Curtin Date: Wed, 29 Sep 2010 19:09:33 +0000 (+0000) Subject: Remove an unreferenced variable. len is no longer needed. X-Git-Tag: v3.2a3~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=748cacee469b3e0204b5f1323c22bae7a0f11e1a;p=thirdparty%2FPython%2Fcpython.git Remove an unreferenced variable. len is no longer needed. --- diff --git a/Python/import.c b/Python/import.c index b708f27d3830..43c149415086 100644 --- a/Python/import.c +++ b/Python/import.c @@ -3723,7 +3723,6 @@ NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) PyObject *pathobj; DWORD rv; wchar_t *path; - Py_ssize_t len; if (!_PyArg_NoKeywords("NullImporter()", kwds)) return -1;