1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

cache: use new style classes

(Bitbake rev: e084430446be2544dd1a6b627088f888c37cc7f0)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2010-11-18 11:14:27 -07:00
committed by Richard Purdie
parent c4d939079e
commit 84f02831a7
+3 -6
View File
@@ -45,7 +45,8 @@ except ImportError:
__cache_version__ = "132"
class Cache:
class Cache(object):
"""
BitBake Cache implementation
"""
@@ -502,11 +503,7 @@ def init(cooker):
return Cache(cooker.configuration.data)
#============================================================================#
# CacheData
#============================================================================#
class CacheData:
class CacheData(object):
"""
The data structures we compile from the cached data
"""