summaryrefslogtreecommitdiff
path: root/src/distutils2/depgraph.py
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2010-05-31 01:55:09 +0200
committerTarek Ziade <tarek@ziade.org>2010-05-31 01:55:09 +0200
commit4f2c06d93b2bd6f7aad3008f12e75c385fa68a0e (patch)
treeeaf4784ba6e06f4521b2b6716370b7a413e073f9 /src/distutils2/depgraph.py
parent1f545ee4f58be31a8df45fb7092654b6f9620497 (diff)
downloaddisutils2-4f2c06d93b2bd6f7aad3008f12e75c385fa68a0e.tar.gz
removed unused variable
Diffstat (limited to 'src/distutils2/depgraph.py')
-rw-r--r--src/distutils2/depgraph.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/distutils2/depgraph.py b/src/distutils2/depgraph.py
index 67a32dc..8ab4690 100644
--- a/src/distutils2/depgraph.py
+++ b/src/distutils2/depgraph.py
@@ -107,11 +107,8 @@ def generate_graph(dists):
"""
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)