- Firebird NUMERIC type properly handles a type without precision [ticket:409]
- fix to post_update to insure rows are updated even for non insert/delete scenarios
[ticket:413]
+- default "timezone" setting is now False. this corresponds to Python's datetime
+behavior as well as Postgres' timestamp/time types (which is the only timezone-sensitive
+dialect at the moment) [ticket:414]
0.3.3
- string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"])
class DateTime(TypeEngine):
"""implements a type for datetime.datetime() objects"""
- def __init__(self, timezone=True):
+ def __init__(self, timezone=False):
self.timezone = timezone
def adapt(self, impltype):
return impltype(timezone=self.timezone)
class Time(TypeEngine):
"""implements a type for datetime.time() objects"""
- def __init__(self, timezone=True):
+ def __init__(self, timezone=False):
self.timezone = timezone
def adapt(self, impltype):
return impltype(timezone=self.timezone)