(name: str, expr: str)
| 165 | runtime_defaults: dict[str, Any] = {} |
| 166 | |
| 167 | def _transform_expr(name: str, expr: str) -> str: |
| 168 | if name in dc_to_tuple_set: |
| 169 | return f"{_INTERNAL_UNPACK}({expr})" |
| 170 | return expr |
| 171 | |
| 172 | def _add_param_with_default(name: str, default_value: Any) -> None: |
| 173 | # Directly embed None and bool defaults; use MISSING sentinel for others. |
no outgoing calls
no test coverage detected