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>
"""
def __init__(self):
- """
- Direct cache variables
- """
+ # Direct cache variables
self.providers = defaultdict(list)
self.rproviders = defaultdict(list)
self.packages = defaultdict(list)
self.basetaskhash = {}
self.hashfn = {}
- """
- Indirect Cache variables
- (set elsewhere)
- """
+ # Indirect Cache variables (set elsewhere)
self.ignored_dependencies = []
self.world_target = set()
self.bbfile_priority = {}