]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- add documentation note for [ticket:1841]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 27 Apr 2013 19:35:13 +0000 (15:35 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 27 Apr 2013 19:35:13 +0000 (15:35 -0400)
lib/sqlalchemy/types.py

index 1824a9b3fdeb36f3b618d790fe4e53596a98ba89..46cf9e2a145681d08c54640f7a1dff48c969e560 100644 (file)
@@ -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'