MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/dialects/mssql/base.py:1235–1240  ·  view source on GitHub ↗
(self, **kw)

Source from the content-addressed store, hash-verified

1233 """
1234
1235 def __init__(self, **kw):
1236 # DOUBLE PRECISION is a synonym for FLOAT(53) on SQL server.
1237 # it is only accepted as the word "DOUBLE PRECISION" in DDL,
1238 # the numeric precision value is not allowed to be present
1239 kw.setdefault("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