cache: fix docstring usage

Use comments instead of docstrings where appropriate in CacheData.

(Bitbake rev: 088d516e02bb2b4ce8a50bbaa967e944c46e620b)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Larson 2011-01-20 14:32:16 -07:00 committed by Richard Purdie
parent 68bd406962
commit 882ac1afea
1 changed files with 2 additions and 7 deletions

View File

@ -548,9 +548,7 @@ class CacheData(object):
"""
def __init__(self):
"""
Direct cache variables
"""
# Direct cache variables
self.providers = defaultdict(list)
self.rproviders = defaultdict(list)
self.packages = defaultdict(list)
@ -575,10 +573,7 @@ class CacheData(object):
self.basetaskhash = {}
self.hashfn = {}
"""
Indirect Cache variables
(set elsewhere)
"""
# Indirect Cache variables (set elsewhere)
self.ignored_dependencies = []
self.world_target = set()
self.bbfile_priority = {}