summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
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/lib/bb/cache.py
parent68bd4069625082503d5664744cf944c202779a4b (diff)
downloadpoky-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/lib/bb/cache.py')
-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):
548 """ 548 """
549 549
550 def __init__(self): 550 def __init__(self):
551 """ 551 # Direct cache variables
552 Direct cache variables
553 """
554 self.providers = defaultdict(list) 552 self.providers = defaultdict(list)
555 self.rproviders = defaultdict(list) 553 self.rproviders = defaultdict(list)
556 self.packages = defaultdict(list) 554 self.packages = defaultdict(list)
@@ -575,10 +573,7 @@ class CacheData(object):
575 self.basetaskhash = {} 573 self.basetaskhash = {}
576 self.hashfn = {} 574 self.hashfn = {}
577 575
578 """ 576 # Indirect Cache variables (set elsewhere)
579 Indirect Cache variables
580 (set elsewhere)
581 """
582 self.ignored_dependencies = [] 577 self.ignored_dependencies = []
583 self.world_target = set() 578 self.world_target = set()
584 self.bbfile_priority = {} 579 self.bbfile_priority = {}