Lines Matching full:foo*
426 collections.abc.Iterable - isinstance(foo, Iterable) would be True.
572 class Foo:
1719 # For some generic class `Foo`:
1720 Foo[Unpack[tuple[int, str]]] # Equivalent to Foo[int, str]
1733 Foo[*tuple[int, str]]
1801 does. For example, for some generic class `Foo`, this is called when we
1802 do `Foo[int]` - there, with `cls=Foo` and `params=int`.
1805 classes in the first place with `class Foo(Generic[T]): ...`.