summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-04-27 15:35:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-04-27 15:35:13 -0400
commit5f51d409ccda1033a41256dfc28e46bc6923521d (patch)
tree60f989b496047d9c4996d23379d59e708a0f4396
parent858332de0a171af43a55a2fd8c3a244b510109cf (diff)
downloadsqlalchemy-5f51d409ccda1033a41256dfc28e46bc6923521d.tar.gz
- add documentation note for [ticket:1841]
-rw-r--r--lib/sqlalchemy/types.py4
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'