diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-01-20 14:32:16 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-10 22:34:10 +0000 |
commit | 882ac1afea1d6317022db8eae466a19f49f714c1 (patch) | |
tree | d0c25e366c0cb42ea056e3f3d9e39f865640df29 | |
parent | 68bd4069625082503d5664744cf944c202779a4b (diff) | |
download | poky-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>
-rw-r--r-- | bitbake/lib/bb/cache.py | 9 |
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 = {} |