summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/sqlite/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-08-04 15:20:46 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-08-04 15:20:46 -0400
commit0eb06660ce838b23e8d12c460f3f322ba3f23ab5 (patch)
treea62ed8962544de66ad270ecc5e972789dd67bdfb /lib/sqlalchemy/dialects/sqlite/base.py
parent32035d3c5d35cc5414d7e6df833aff1a4fd367d0 (diff)
downloadsqlalchemy-0eb06660ce838b23e8d12c460f3f322ba3f23ab5.tar.gz
link date/time classes correctly, helps [ticket:2244]
Diffstat (limited to 'lib/sqlalchemy/dialects/sqlite/base.py')
-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 577b9a3a0..f0c9a0cca 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.