diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-27 15:35:13 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-27 15:35:13 -0400 |
commit | 5f51d409ccda1033a41256dfc28e46bc6923521d (patch) | |
tree | 60f989b496047d9c4996d23379d59e708a0f4396 | |
parent | 858332de0a171af43a55a2fd8c3a244b510109cf (diff) | |
download | sqlalchemy-5f51d409ccda1033a41256dfc28e46bc6923521d.tar.gz |
- add documentation note for [ticket:1841]
-rw-r--r-- | lib/sqlalchemy/types.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index 1824a9b3f..46cf9e2a1 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -1184,7 +1184,9 @@ class Text(String): In SQL, usually corresponds to CLOB or TEXT. Can also take Python unicode objects and encode to the database's encoding in bind - params (and the reverse for result sets.) + params (and the reverse for result sets.) In general, TEXT objects + do not have a length; while some databases will accept a length + argument here, it will be rejected by others. """ __visit_name__ = 'text' |