From: Paul Butler Date: Mon, 27 Aug 2012 14:38:17 +0000 (+0000) Subject: removed outdated reference to TINYINT(1) => BOOLEAN reflection in mysql dialect X-Git-Tag: rel_0_8_0b1~201 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80432f97edcd22a3b7820a65c821a8df0edf6434;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git removed outdated reference to TINYINT(1) => BOOLEAN reflection in mysql dialect --- diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index 2c440605ee..fba920533f 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -601,10 +601,6 @@ class TINYINT(_IntegerType): def __init__(self, display_width=None, **kw): """Construct a TINYINT. - Note: following the usual MySQL conventions, TINYINT(1) columns - reflected during Table(..., autoload=True) are treated as - Boolean columns. - :param display_width: Optional, maximum display width for this number. :param unsigned: a boolean, optional.