(compile_mode: str)
| 148 | return |
| 149 | |
| 150 | def is_lambda_mode(compile_mode: str) -> bool: |
| 151 | return compile_mode in ("dictcomp", "genexpr", "lambda", "listcomp", "setcomp") |
| 152 | |
| 153 | |
| 154 | def print_docstring(self, indent, docstring): |
no outgoing calls
no test coverage detected