[Python-checkins] distutils2: removed unused variable

tarek.ziade python-checkins at python.org
Mon May 31 01:56:09 CEST 2010


tarek.ziade pushed b7fd258b33e7 to distutils2:

http://hg.python.org/distutils2/rev/b7fd258b33e7
changeset:   188:b7fd258b33e7
tag:         tip
user:        Tarek Ziade <tarek at ziade.org>
date:        Mon May 31 01:55:09 2010 +0200
summary:     removed unused variable
files:       src/distutils2/depgraph.py

diff --git a/src/distutils2/depgraph.py b/src/distutils2/depgraph.py
--- a/src/distutils2/depgraph.py
+++ b/src/distutils2/depgraph.py
@@ -107,11 +107,8 @@
     """
     graph = DependencyGraph()
     provided = {} # maps names to lists of (version, dist) tuples
-
     dists = list(dists) # maybe use generator_tools in future
 
-    missing = [] # a list of (instance, requirement) tuples
-
     # first, build the graph and find out the provides
     for dist in dists:
         graph.add_distribution(dist)

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


More information about the Python-checkins mailing list