Hi John

You examples are the same 

old_keys = [str(key1), str(key2),str(key3)] 
new_keys = [str(db.Key(i)) for i in old_keys] 

new_keys would be 

new_keys = [db.Key(i) for i in old_keys] 
assuming new_keys has been declared as db.ListProperty(db.Key)

Rgds

Tim

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/FkgEQxzEtJYJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to