mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
15 lines
398 B
Python
15 lines
398 B
Python
import sys
|
|
from _typeshed import Incomplete
|
|
from collections.abc import Mapping
|
|
from typing import ClassVar
|
|
|
|
if sys.version_info >= (3, 9):
|
|
__all__ = ["Dialog"]
|
|
|
|
class Dialog:
|
|
command: ClassVar[str | None]
|
|
master: Incomplete | None
|
|
options: Mapping[str, Incomplete]
|
|
def __init__(self, master: Incomplete | None = None, **options) -> None: ...
|
|
def show(self, **options): ...
|