(self, cls, **kw)
| 1907 | return impltype(**kw) |
| 1908 | |
| 1909 | def adapt(self, cls, **kw): |
| 1910 | kw["_enums"] = self._enums_argument |
| 1911 | kw["_disable_warnings"] = True |
| 1912 | return super().adapt(cls, **kw) |
| 1913 | |
| 1914 | def _should_create_constraint(self, compiler, **kw): |
| 1915 | if not self._is_impl_for_variant(compiler.dialect, kw): |
no outgoing calls