in http://code.google.com/appengine/docs/python/datastore/expandoclass.html
we can read:
    "Dynamic properties simply store values of the supported datastore
types. See Types and Property Classes."
I would expect to be able to use any property class available to a
Model.

instead, I've come up with the following error:
    "TypeError: Expando cannot accept values of type
'StringListProperty'."

examining python/google/appengine/ext/db/__init__.py we can check what
are the actual supported types:
 
http://www.google.com/codesearch#Qx8E-7HUBTk/trunk/python/google/appengine/ext/db/__init__.py&q=_ALLOWED_EXPANDO_PROPERTY_TYPES%20package:http://googleappengine%5C.googlecode%5C.com&l=259

is this correct?
can't I just add StringListProperty to _ALLOWED_PROPERTY_TYPES ? ;)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to