MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/dialects/mssql/base.py:1235–1240  ·  lib/sqlalchemy/dialects/mssql/base.py::DOUBLE_PRECISION.__init__
(self, **kw)

Source from the content-addressed store, hash-verified

1233 class="st">"""
1234
1235 def __init__(self, **kw):
1236 class="cm"># DOUBLE PRECISION is a synonym for FLOAT(53) on SQL server.
1237 class="cm"># it is only accepted as the word class="st">"DOUBLE PRECISION" in DDL,
1238 class="cm"># the numeric precision value is not allowed to be present
1239 kw.setdefault(class="st">"precision", 53)
1240 super().__init__(**kw)
1241
1242
1243class TINYINT(sqltypes.Integer):

Callers

nothing calls this directly

Calls 2

setdefaultMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected