summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter A. Bigot <pabigot@users.sourceforge.net>2010-05-28 18:39:08 -0500
committerPeter A. Bigot <pabigot@users.sourceforge.net>2010-05-28 18:39:08 -0500
commit1ff788f23c44dee28207f0da0174d6a9717a51b3 (patch)
treed56432a590919d2dd5571e6e4a54fc45d2a55644
parent1c714f8376952cf490deb50abbc3360bf085c474 (diff)
Symbol set entry for wildcards must be destroyable list, not reference to instance content
-rw-r--r--pyxb/binding/basis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyxb/binding/basis.py b/pyxb/binding/basis.py
index 78cb04d..04f98c4 100644
--- a/pyxb/binding/basis.py
+++ b/pyxb/binding/basis.py
@@ -1775,7 +1775,7 @@ class complexTypeDefinition (_TypeBinding_mixin, utility._DeconflictSymbols_mixi
rv[eu] = [ converter(value)]
wce = self.wildcardElements()
if (wce is not None) and (0 < len(wce)):
- rv[None] = wce
+ rv[None] = wce[:]
return rv
def _validateAttributes (self):