summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/COW.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/COW.py')
-rw-r--r--bitbake/lib/bb/COW.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/COW.py b/bitbake/lib/bb/COW.py
index e5063d60a8..5db41776ec 100644
--- a/bitbake/lib/bb/COW.py
+++ b/bitbake/lib/bb/COW.py
@@ -26,7 +26,7 @@
26from inspect import getmro 26from inspect import getmro
27 27
28import copy 28import copy
29import types, sets 29import types
30types.ImmutableTypes = tuple([ \ 30types.ImmutableTypes = tuple([ \
31 types.BooleanType, \ 31 types.BooleanType, \
32 types.ComplexType, \ 32 types.ComplexType, \
@@ -35,7 +35,7 @@ types.ImmutableTypes = tuple([ \
35 types.LongType, \ 35 types.LongType, \
36 types.NoneType, \ 36 types.NoneType, \
37 types.TupleType, \ 37 types.TupleType, \
38 sets.ImmutableSet] + \ 38 frozenset] + \
39 list(types.StringTypes)) 39 list(types.StringTypes))
40 40
41MUTABLE = "__mutable__" 41MUTABLE = "__mutable__"