ruff/crates/ty_python_semantic/resources/mdtest/binary/in.md
Andrew Gallant fc549bda94
Some checks are pending
CI / Determine changes (push) Waiting to run
CI / cargo fmt (push) Waiting to run
CI / cargo clippy (push) Blocked by required conditions
CI / cargo test (linux) (push) Blocked by required conditions
CI / cargo test (linux, release) (push) Blocked by required conditions
CI / cargo test (windows) (push) Blocked by required conditions
CI / cargo test (wasm) (push) Blocked by required conditions
CI / cargo build (release) (push) Waiting to run
CI / cargo build (msrv) (push) Blocked by required conditions
CI / cargo fuzz build (push) Blocked by required conditions
CI / fuzz parser (push) Blocked by required conditions
CI / test scripts (push) Blocked by required conditions
CI / ecosystem (push) Blocked by required conditions
CI / Fuzz for new ty panics (push) Blocked by required conditions
CI / cargo shear (push) Blocked by required conditions
CI / python package (push) Waiting to run
CI / pre-commit (push) Waiting to run
CI / mkdocs (push) Waiting to run
CI / formatter instabilities and black similarity (push) Blocked by required conditions
CI / test ruff-lsp (push) Blocked by required conditions
CI / check playground (push) Blocked by required conditions
CI / benchmarks (push) Blocked by required conditions
[ty Playground] Release / publish (push) Waiting to run
[ty] Minor tweaks to "list all members" docs and tests (#18388)
Ref https://github.com/astral-sh/ruff/pull/18251#pullrequestreview-2881810681
2025-05-30 13:36:57 -04:00

957 B

Static binary operations using in

Basic functionality

This demonstrates type inference support for <str-literal> in <tuple>:

from ty_extensions import static_assert

static_assert("foo" in ("quux", "foo", "baz"))
static_assert("foo" not in ("quux", "bar", "baz"))

With variables

from ty_extensions import static_assert

x = ("quux", "foo", "baz")
static_assert("foo" in x)

x = ("quux", "bar", "baz")
static_assert("foo" not in x)

Statically unknown results in a bool

def _(a: str, b: str):
    reveal_type("foo" in (a, b))  # revealed: bool

Values being unknown doesn't mean the result is unknown

For example, when the types are completely disjoint:

from ty_extensions import static_assert

def _(a: int, b: int):
    static_assert("foo" not in (a, b))

Failure cases

# We don't support byte strings.
reveal_type(b"foo" not in (b"quux", b"foo", b"baz"))  # revealed: bool