aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/data_dict.py
AgeCommit message (Collapse)Author
2005-06-15BitBake (minor update):Holger Hans Peter Freyther
-Remove data_dict.py as it was not needed for sooo long -Remove TODOs related to data_dict.py -Remove data_dict from the MANIFEST
2005-05-28bitbake/lib/bb/*:1.3.0Holger Hans Peter Freyther
include 'time' into the scope. For bitbake 1.3.1 we need to define which modules will be visible when executing embedded python methods
2005-05-20bitbake/lib/bb/data_dict.py:Holger Hans Peter Freyther
-Fix one bug in the unused data_dict.py. There is still one left... again cookies for the one finding it
2005-05-20bitbake/lib/bb/data_smart.py:Holger Hans Peter Freyther
Return only the mtime from the os.stat syscall bitbake/lib/bb/data_dict.py: Return only the mtime from the os.stat syscall
2005-05-17lib/bb/data.py:Holger Hans Peter Freyther
· -Add a method to get the modify time of named bb.data instance · -Add a method to create a named bb.data instance. These instances · inherit the global configuration. lib/bb/data_dict.py: · -Add persistents to the data_dict implementation, on the commit method we will now pickle the internal dict lib/bb/make.py: -Use the new persistent/named bb.data methods.
2005-05-17createCopy:Holger Hans Peter Freyther
-Move a createCopy method into data.py -Make code creating deepcopies of the data instance use this new createCopy
2005-05-17bitbake data module abstraction:Holger Hans Peter Freyther
-bb.data is now a delegate to hookable Data implementation. -bb.data.init() is the 'factory' method to create a instance of a concrete implementation. -Kill assumptions that bb.data.init() returns a {} (python dict) -Add the old Dictionary Based Implementation as data_dict.py