Kaan Soral

Results 103 comments of Kaan Soral

My Python is rusty but maybe dynamically overriding the section here in code: https://chromium.googlesource.com/external/googleappengine/python/+/3b4e135a03ddf2132df0c0c8d3f7cdc9eaa8c34b/google/appengine/ext/ndb/model.py ``` class PickleProperty(BlobProperty): -- class PickleProperty(BlobProperty): """A Property whose value is any picklable Python object.""" def...

This ended up being the patch that was refused here https://issuetracker.google.com/issues/322622693 ``` def _from_base_type(self, value): try: return pickle.loads(value) except: return pickle.loads(value,encoding='latin1') ndb.model.PickleProperty._from_base_type=_from_base_type ```

Thank you, this was the response to my second issue tracker issue: https://issuetracker.google.com/issues/322838721 I do share the same sentiment with you, I doubt this will be fixed for others too,...