From 882ac1afea1d6317022db8eae466a19f49f714c1 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 20 Jan 2011 14:32:16 -0700 Subject: cache: fix docstring usage Use comments instead of docstrings where appropriate in CacheData. (Bitbake rev: 088d516e02bb2b4ce8a50bbaa967e944c46e620b) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/cache.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'bitbake/lib/bb/cache.py') 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 = {} -- cgit v1.2.3-54-g00ecf