From: Mike Bayer Date: Sat, 27 Apr 2013 19:35:13 +0000 (-0400) Subject: - add documentation note for [ticket:1841] X-Git-Tag: rel_0_8_1~1^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f51d409ccda1033a41256dfc28e46bc6923521d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - add documentation note for [ticket:1841] --- diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index 1824a9b3fd..46cf9e2a14 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'