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 /bitbake/lib | |
parent | 68bd4069625082503d5664744cf944c202779a4b (diff) | |
download | openembedded-core-contrib-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')
-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 ff42a37b44d..7ea04ac1a52 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 = {} |