Files
typeshed/stdlib/tkinter/dialog.pyi
2022-10-21 19:18:04 +03:00

17 lines
413 B
Python

import sys
from _typeshed import Incomplete
from collections.abc import Mapping
from tkinter import Widget
from typing import Any
if sys.version_info >= (3, 9):
__all__ = ["Dialog"]
DIALOG_ICON: str
class Dialog(Widget):
widgetName: str
num: int
def __init__(self, master: Incomplete | None = ..., cnf: Mapping[str, Any] = ..., **kw: Incomplete) -> None: ...
def destroy(self) -> None: ...