from typing import Any

def expand_tuples(L) -> list[tuple[()]] | list[Any]: ...
def reverse_dict(d) -> dict[Any, Any]: ...
def groupby(func, seq) -> dict[Any, Any]: ...
