MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / Double

Class Double

lib/sqlalchemy/sql/sqltypes.py:779–790  ·  view source on GitHub ↗

A type for double ``FLOAT`` floating point types. Typically generates a ``DOUBLE`` or ``DOUBLE_PRECISION`` in DDL, and otherwise acts like a normal :class:`.Float` on the Python side. .. versionadded:: 2.0

Source from the content-addressed store, hash-verified

777
778
779class Double(Float[_N]):
780 """A type for double ``FLOAT`` floating point types.
781
782 Typically generates a ``DOUBLE`` or ``DOUBLE_PRECISION`` in DDL,
783 and otherwise acts like a normal :class:`.Float` on the Python
784 side.
785
786 .. versionadded:: 2.0
787
788 """
789
790 __visit_name__ = "double"
791
792
793class _RenderISO8601NoT:

Callers 4

test_float_typesMethod · 0.90
test_numericsMethod · 0.90
sqltypes.pyFile · 0.85

Calls

no outgoing calls

Tested by 3

test_float_typesMethod · 0.72
test_numericsMethod · 0.72