Files
typeshed/stdlib/tkinter/dialog.pyi
2023-03-21 09:12:34 +01: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 = None, cnf: Mapping[str, Any] = {}, **kw: Incomplete) -> None: ...
def destroy(self) -> None: ...