mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
10
stdlib/tkinter/dialog.pyi
Normal file
10
stdlib/tkinter/dialog.pyi
Normal file
@@ -0,0 +1,10 @@
|
||||
from tkinter import Widget
|
||||
from typing import Any, Mapping, Optional
|
||||
|
||||
DIALOG_ICON: str
|
||||
|
||||
class Dialog(Widget):
|
||||
widgetName: str = ...
|
||||
num: int = ...
|
||||
def __init__(self, master: Optional[Any] = ..., cnf: Mapping[str, Any] = ..., **kw) -> None: ...
|
||||
def destroy(self) -> None: ...
|
||||
Reference in New Issue
Block a user