[Python-checkins] r85121 - python/branches/py3k/Python/import.c

brian.curtin python-checkins at python.org
Wed Sep 29 21:09:33 CEST 2010


Author: brian.curtin
Date: Wed Sep 29 21:09:33 2010
New Revision: 85121

Log:
Remove an unreferenced variable. len is no longer needed.


Modified:
   python/branches/py3k/Python/import.c

Modified: python/branches/py3k/Python/import.c
==============================================================================
--- python/branches/py3k/Python/import.c	(original)
+++ python/branches/py3k/Python/import.c	Wed Sep 29 21:09:33 2010
@@ -3723,7 +3723,6 @@
     PyObject *pathobj;
     DWORD rv;
     wchar_t *path;
-    Py_ssize_t len;
 
     if (!_PyArg_NoKeywords("NullImporter()", kwds))
         return -1;


More information about the Python-checkins mailing list