Hello,
I was just trying to save a list in a pickle column, but it fails.
The problem is here I think:
rev 1222, attributes.py: line 91 and 92
class PropHistory(object):
.....
if isinstance(value, list):
raise InvalidRequestError("assigning a list to scalar property '%s' on
'%s' instance %d" % (self.key, self.obj.__class__.__name__,
id(self.obj)))
I assume this isn't the desired behavior. Perhaps there should be some kind of additional check before the error is raised?
-Michael
- [Sqlalchemy-users] Lists not allowed in Pickle Columns? Michael Carter