# HG changeset patch # User Sylvain Thénault # Date 1265369634 -3600 # Node ID c094101ba85db78af3eecd122c81750829bfdc68 # Parent 14429e8c7590e4e55ad70498cbdc32866ef85eb9 oops, forgot that part of 3.2 bw compat diff -r 14429e8c7590 -r c094101ba85d server/sqlutils.py --- a/server/sqlutils.py Fri Feb 05 12:16:52 2010 +0100 +++ b/server/sqlutils.py Fri Feb 05 12:33:54 2010 +0100 @@ -251,16 +251,6 @@ value = todate(value) elif isinstance(value, Binary): value = self.binary(value.getvalue()) - # XXX <3.2 bw compat - elif type(value) is DateTimeType: - warn('found mx date time instance, please update to use datetime', - DeprecationWarning) - value = datetime(value.year, value.month, value.day, - value.hour, value.minute, int(value.second)) - elif type(value) is DateTimeDeltaType: - warn('found mx date time instance, please update to use datetime', - DeprecationWarning) - value = timedelta(0, int(value.seconds), 0) attrs[SQL_PREFIX+str(attr)] = value return attrs