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(codec): drop redundant buf.is_empty() guards
`<[u8]>::starts_with` on an empty buffer with a non-empty prefix
already returns false, so the `buf.is_empty() || !buf.starts_with(MAGIC)`
guard in each `try_decode_python_*_udf` function reduces to just
`!buf.starts_with(MAGIC)`.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments