(self, type_var: TypeVarType, bound: Type)
| 281 | assert_equal(dict(actual_uppers), uppers) |
| 282 | |
| 283 | def supc(self, type_var: TypeVarType, bound: Type) -> Constraint: |
| 284 | return Constraint(type_var, SUPERTYPE_OF, bound) |
| 285 | |
| 286 | def subc(self, type_var: TypeVarType, bound: Type) -> Constraint: |
| 287 | return Constraint(type_var, SUBTYPE_OF, bound) |
no test coverage detected