(self, o: object)
| 403 | return self.stubgen.add_name("_typeshed.Incomplete") |
| 404 | |
| 405 | def _visit_unsupported_expr(self, o: object) -> str: |
| 406 | # Something we do not understand. |
| 407 | return self.stubgen.add_name("_typeshed.Incomplete") |
| 408 | |
| 409 | def visit_comparison_expr(self, o: ComparisonExpr) -> str: |
| 410 | return self._visit_unsupported_expr(o) |
no test coverage detected