aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/COW.py
AgeCommit message (Collapse)Author
2017-05-15lib/bb/COW.py: fix typo in Tim Ansell's namePaul Eggleton
See AUTHORS for reference. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-11-23COW.py: fix sample codesKai Kang
The call of methods iteritems() and itervalues() in sample codes were replaced by items() and values() to convert to Python 3 by Bitbake rev d0f904d407f57998419bd9c305ce53e5eaa36b24. But the methods iteritems() and itervalues() belong to class COWDictMeta not class dict or set. The modifications should not be made in purpose that it fails to run sample codes, so revert them. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-06-01bitbake: Convert to python 3Richard Purdie
Various misc changes to convert bitbake to python3 which don't warrant separation into separate commits. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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