aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/COW.py
AgeCommit message (Collapse)Author
2010-06-21Apply some 2to3 refactoringsChris Larson
2010-04-12Kill unnecessary usages of the types moduleChris Larson
types.IntType -> int types.StringType -> basestring ... Also moves our ImmutableTypes tuple into our own namespace. Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-11Add __contains__ to COWDictMetaChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-09Apply the 2to3 print function transformChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2010-04-09Formatting cleanupsChris Larson
Signed-off-by: Chris Larson <chris_larson@mentor.com>
2009-05-11[bb] Remove unused imports reported by pyflakesHolger Hans Peter Freyther
2009-04-21lib: remove use of 'sets' to make Python 2.6 happyMarcin Juszkiewicz
Acked-by: Chris Larson <clarson@kergoth.com>
2006-12-08Add proper GPLv2 headers to all BitBake filesHolger Hans Peter Freyther
BitBake trunk is now GPLv2 only, no mix of MIT,FreeBSD License is left. Update GPL headers to point to the correct address of the FSF Update the list of authors. Uli Luckas, Seb Frankengul and Tim Amsell contributed to the sourcecode as well
2006-04-24Delete now works. Other cleanup and fixes.Tim Ansell
2006-04-24Degrades to copy on mutable types - Cheap is the mutable types are already COW.Tim Ansell
2006-04-21COW example...Tim Ansell