summaryrefslogtreecommitdiff
path: root/pkg_resources
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-02-10 22:42:16 -0500
committerJason R. Coombs <jaraco@jaraco.com>2018-02-10 22:42:16 -0500
commitdc071a330c51804e9749e6d08370b048b785eadc (patch)
tree864f4722497254f10cf0d4b260c824ce75201d1d /pkg_resources
parent2efa19d215f2a7698c266363894c3184eb72129a (diff)
downloadpython-setuptools-git-dc071a330c51804e9749e6d08370b048b785eadc.tar.gz
Add a comment
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index d60f08bb..08547560 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -2676,6 +2676,10 @@ class Distribution(object):
@property
def _dep_map(self):
+ """
+ A map of extra to its list of (direct) requirements
+ for this distribution, including the null extra.
+ """
try:
return self.__dep_map
except AttributeError: