mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
8
stdlib/tkinter/scrolledtext.pyi
Normal file
8
stdlib/tkinter/scrolledtext.pyi
Normal file
@@ -0,0 +1,8 @@
|
||||
from tkinter import Frame, Grid, Misc, Pack, Place, Scrollbar, Text
|
||||
from typing import Any, Optional
|
||||
|
||||
# The methods from Pack, Place, and Grid are dynamically added over the parent's impls
|
||||
class ScrolledText(Text):
|
||||
frame: Frame
|
||||
vbar: Scrollbar
|
||||
def __init__(self, master: Optional[Misc] = ..., **kwargs: Any) -> None: ...
|
||||
Reference in New Issue
Block a user