You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(ctx): make with_python_udf_inlining enabled keyword-only
`ctx.with_python_udf_inlining(True)` and
`ctx.with_python_udf_inlining(False)` read identically at the call site
— a bare positional `True` / `False` does not convey which direction the
toggle moves. Forcing `enabled=` at the call site disambiguates:
`with_python_udf_inlining(enabled=False)` is unambiguously the
opt-out form.
The Rust constructor stays positional (internal API); only the public
Python wrapper changes signature. All in-tree callers (tests, docs,
FFI example test) already used or now use the keyword form.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments