Mercurial > code > home > repos > light9
view stubs/louie/dispatcher.pyi @ 2023:b64a4db527e2
whitespace
Ignore-this: 82ab84810df09d549904116da2c3e4b8
author | drewp@bigasterisk.com |
---|---|
date | Mon, 10 Jun 2019 23:50:04 +0000 |
parents | 4ce991cdacdb |
children |
line wrap: on
line source
# Stubs for louie.dispatcher (Python 3) # from louie.sender import Any from typing import Any as Any_type connects: int disconnects: int sends: int def print_stats() -> None: ... def reset() -> None: ... def connect(receiver: Any_type, signal: Any_type = ..., sender: Any_type = ..., weak: bool = ...) -> None: ... def disconnect(receiver: Any_type, signal: Any_type = ..., sender: Any_type = ..., weak: bool = ...) -> None: ... def get_receivers(sender: Any_type = ..., signal: Any_type = ...): ... def live_receivers(receivers: Any_type) -> None: ... def get_all_receivers(sender: Any_type = ..., signal: Any_type = ...) -> None: ... def send(signal: Any_type = ..., sender: Any_type = ..., *arguments: Any_type, **named: Any_type): ... def send_minimal(signal: Any_type = ..., sender: Any_type = ..., *arguments: Any_type, **named: Any_type): ... def send_exact(signal: Any_type = ..., sender: Any_type = ..., *arguments: Any_type, **named: Any_type): ... def send_robust(signal: Any_type = ..., sender: Any_type = ..., *arguments: Any_type, **named: Any_type): ...