summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-08-04 15:20:34 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-08-04 15:20:34 -0400
commitb32c2001029d70233d032bab37cde3c5debe216e (patch)
treefc5a4d9f3373d83c9d5ace86e1ab5fd27e515e8d
parent14a14b4a42c3e6dc040a90b765e877f5cf7a5fa2 (diff)
downloadsqlalchemy-b32c2001029d70233d032bab37cde3c5debe216e.tar.gz
link date/time classes correctly, helps [ticket:2244]
-rw-r--r--lib/sqlalchemy/dialects/sqlite/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py
index e2f5f2315..049f59c86 100644
--- a/lib/sqlalchemy/dialects/sqlite/base.py
+++ b/lib/sqlalchemy/dialects/sqlite/base.py
@@ -16,7 +16,7 @@ SQLite does not have built-in DATE, TIME, or DATETIME types, and pysqlite does n
out of the box functionality for translating values between Python `datetime` objects
and a SQLite-supported format. SQLAlchemy's own :class:`~sqlalchemy.types.DateTime`
and related types provide date formatting and parsing functionality when SQlite is used.
-The implementation classes are :class:`DATETIME`, :class:`DATE` and :class:`TIME`.
+The implementation classes are :class:`~.sqlite.DATETIME`, :class:`~.sqlite.DATE` and :class:`~.sqlite.TIME`.
These types represent dates and times as ISO formatted strings, which also nicely
support ordering. There's no reliance on typical "libc" internals for these functions
so historical dates are fully supported.