Change-Id: I8593e4402ae068edfc14516ee3ec0a96513c2b36
:tickets: 6109
Fixed bug in Mypy plugin where the Python type detection
- for the :class:`_sqltypes.Boolean` column type would produce
- an exception; additionally implemented support for :class:`_sqltypes.Enum`,
+ for the :class:`_types.Boolean` column type would produce
+ an exception; additionally implemented support for :class:`_types.Enum`,
including detection of a string-based enum vs. use of Python ``enum.Enum``.
:tags: bug, orm
:tickets: 6124
- Repaired support so that the :meth:`_sql.Select.params` method can work
- correctly with a :class:`_sql.Select` object that includes joins across ORM
- relationship structures, which is a new feature in 1.4.
+ Repaired support so that the :meth:`_sql.ClauseElement.params` method can
+ work correctly with a :class:`_sql.Select` object that includes joins
+ across ORM relationship structures, which is a new feature in 1.4.