From: Guido van Rossum Date: Mon, 13 Aug 2001 15:55:19 +0000 (+0000) Subject: Remove unused variable 'imports' from readmodule_ex(). X-Git-Tag: v2.2a3~582 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a5555b19df364819aa1e3013e0e1701b8cde31a;p=thirdparty%2FPython%2Fcpython.git Remove unused variable 'imports' from readmodule_ex(). --- diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index ea42c30f3d89..4a153caf98e4 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py @@ -202,7 +202,6 @@ def readmodule_ex(module, path=[], inpackage=0): return dict _modules[module] = dict - imports = [] classstack = [] # stack of (class, indent) pairs src = f.read() f.close()