From: Michael Trier Date: Tue, 28 Oct 2008 18:09:22 +0000 (+0000) Subject: Corrected typo in Types docs. X-Git-Tag: rel_0_5rc3~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa6c4df3953e46639ef757cc7f29a9b699e4da13;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Corrected typo in Types docs. --- diff --git a/doc/build/content/types.txt b/doc/build/content/types.txt index 64aafe8cd9..a495979ac7 100644 --- a/doc/build/content/types.txt +++ b/doc/build/content/types.txt @@ -43,7 +43,7 @@ Numeric types return `decimal.Decimal` objects by default. The flag `asdecimal= Float types return Python floats. Float also takes a "precision" argument which is used when CREATE TABLE is issued. -#### Datetime/Date/Time +#### DateTime/Date/Time Date and time types return objects from the Python `datetime` module. Most DBAPIs have built in support for the datetime module, with the noted exception of SQLite. In the case of SQLite, date and time types are stored as strings which are then converted back to datetime objects when rows are returned.