]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
removed outdated reference to TINYINT(1) => BOOLEAN reflection in mysql dialect
authorPaul Butler <paulgb@gmail.com>
Mon, 27 Aug 2012 14:38:17 +0000 (14:38 +0000)
committerPaul Butler <paulgb@gmail.com>
Mon, 27 Aug 2012 14:38:17 +0000 (14:38 +0000)
lib/sqlalchemy/dialects/mysql/base.py

index 2c440605eefba18535e9ae76ce05b22069a148a4..fba920533f8d4c986b805af42ea7ab813f8abfb7 100644 (file)
@@ -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.