Hi,

any hints how can i return data structure with dynamic key names (so they 
cannot be specified in type definition)? For example, something like this:

data = {}
for i in xrange(1000):
  data["a%s" % i] = u"something"
return data


without creating type:

class test(ComplexModel):
  a0 = Unicode
  a1 = Unicode
  ...
  a999 = Unicode


Thnx!

azur
_______________________________________________
Soap mailing list
[email protected]
http://mail.python.org/mailman/listinfo/soap

Reply via email to