summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-20 14:32:16 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-10 22:34:10 +0000
commit882ac1afea1d6317022db8eae466a19f49f714c1 (patch)
treed0c25e366c0cb42ea056e3f3d9e39f865640df29 /bitbake
parent68bd4069625082503d5664744cf944c202779a4b (diff)
downloadopenembedded-core-882ac1afea1d6317022db8eae466a19f49f714c1.tar.gz
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>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index ff42a37b44..7ea04ac1a5 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -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 = {}