summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-20 14:32:16 -0700
committerChris Larson <chris_larson@mentor.com>2011-01-20 14:32:17 -0700
commit088d516e02bb2b4ce8a50bbaa967e944c46e620b (patch)
treecffb0e7a1a153a6f4ea906186c61a121334055a7
parentdc0190ae9682f8a59d1688a503b48ebf64e3b115 (diff)
downloadbitbake-088d516e02bb2b4ce8a50bbaa967e944c46e620b.tar.gz
cache: fix docstring usage
Use comments instead of docstrings where appropriate in CacheData. Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/bb/cache.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 9a2e2d529..21fa621c1 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -541,9 +541,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)
@@ -567,10 +565,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 = {}