You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
recurrence column of event stores either a Python serialized string or a list because it uses repr to serialize it and alsoast.literal_eval to deserialize it.
SELECTe.recurrenceFROM recurringevent r JOIN event e ONe.id=r.idWHEREe.recurrenceLIKE BINARY '%u\'%'LIMIT20;
recurrence
column ofevent
stores either a Python serialized string or a list because it usesrepr
to serialize it and alsoast.literal_eval
to deserialize it.At present with Python 3 the parser still accepts u'' literals:
but it can change in the future, which would break sync engine.
The text was updated successfully, but these errors were encountered: