aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-10-11 13:06:54 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-10-11 13:06:54 -0400
commit0f27d17414b5a523614f16e6129ce426df3c3e66 (patch)
tree446521df6ef1a99f4c9996781cd01341408a5194 /pkg_resources.py
parente83d7d416f8706e262235b594384c70bf854eced (diff)
downloadexternal_python_setuptools-0f27d17414b5a523614f16e6129ce426df3c3e66.tar.gz
external_python_setuptools-0f27d17414b5a523614f16e6129ce426df3c3e66.tar.bz2
external_python_setuptools-0f27d17414b5a523614f16e6129ce426df3c3e66.zip
Update comment
Diffstat (limited to 'pkg_resources.py')
-rw-r--r--pkg_resources.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg_resources.py b/pkg_resources.py
index ac72d71f..a5b02223 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -589,8 +589,9 @@ class WorkingSet(object):
# key -> dist
best = {}
to_activate = []
- # key with req -> set of things that required it
- # useful for reporting info about conflicts
+
+ # Mapping of requirement to set of distributions that required it;
+ # useful for reporting info about conflicts.
required_by = collections.defaultdict(set)
while requirements: