Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.3k
gh-78335: Improve tkinter widget docstrings#21118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Co-Authored-By: Noah Haasis <haasis_noah@yahoo.de>
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -2600,8 +2600,8 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
Valid resource names: background, bd, bg, borderwidth, class, | ||||||
colormap, container, cursor, height, highlightbackground, | ||||||
highlightcolor, highlightthickness, menu,padx, pady, relief, | ||||||
screen, takefocus,use, visual, width.""" | ||||||
if kw: | ||||||
cnf = _cnfmerge((cnf, kw)) | ||||||
extra = () | ||||||
@@ -2986,12 +2986,13 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
"""Construct a checkbutton widget with the parent MASTER. | ||||||
Valid resource names: activebackground, activeforeground, anchor, | ||||||
background, bd, bg, bitmap, borderwidth, command,compound,cursor, | ||||||
disabledforeground, fg, font, foreground, height, | ||||||
highlightbackground, highlightcolor, highlightthickness, image, | ||||||
indicatoron, justify, offrelief, offvalue, onvalue, overrelief, | ||||||
padx, pady, relief, selectcolor, selectimage, state, takefocus, | ||||||
text, textvariable, tristateimage, tristatevalue, underline, | ||||||
variable, width, wraplength.""" | ||||||
Widget.__init__(self, master, 'checkbutton', cnf, kw) | ||||||
def deselect(self): | ||||||
@@ -3022,10 +3023,11 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
"""Construct an entry widget with the parent MASTER. | ||||||
Valid resource names: background, bd, bg, borderwidth, cursor, | ||||||
disabledbackground, disabledforeground, exportselection, | ||||||
fg, font, foreground, highlightbackground, highlightcolor, | ||||||
highlightthickness, insertbackground, insertborderwidth, | ||||||
insertofftime, insertontime, insertwidth, invalidcommand, | ||||||
invcmd, justify, readonlybackground, relief, selectbackground, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. The tk docs do not list 'invcmd' but do list 'vcmd'. So I will presume without conrary evidence that this is either missing from the tk doc or is added by tkinter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more.
| ||||||
selectborderwidth, selectforeground, show, state, takefocus, | ||||||
textvariable, validate, validatecommand, vcmd, width, | ||||||
xscrollcommand.""" | ||||||
@@ -3109,7 +3111,8 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
Valid resource names: background, bd, bg, borderwidth, class, | ||||||
colormap, container, cursor, height, highlightbackground, | ||||||
highlightcolor, highlightthickness, padx, pady, relief, takefocus, | ||||||
visual, width.""" | ||||||
cnf = _cnfmerge((cnf, kw)) | ||||||
extra = () | ||||||
if 'class_' in cnf: | ||||||
@@ -3130,8 +3133,8 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
STANDARD OPTIONS | ||||||
activebackground, activeforeground, anchor, | ||||||
background, bitmap, borderwidth,compound, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. tk docs include bg, even though they do not for many of widgets above. Suggested change
| ||||||
cursor,disabledforeground, font, foreground, | ||||||
highlightbackground, highlightcolor, | ||||||
highlightthickness, image, justify, | ||||||
padx, pady, relief, takefocus, text, | ||||||
@@ -3151,11 +3154,12 @@ class Listbox(Widget, XView, YView): | ||||||
def __init__(self, master=None, cnf={}, **kw): | ||||||
"""Construct a listbox widget with the parent MASTER. | ||||||
Valid resource names: activestyle, background, bd, bg, borderwidth, | ||||||
cursor, disabledforeground, exportselection, fg, font, foreground, | ||||||
height, highlightbackground, highlightcolor, highlightthickness, | ||||||
justify, listvariable, relief, selectbackground, selectborderwidth, | ||||||
selectforeground, selectmode, setgrid, state, takefocus, width, | ||||||
xscrollcommand, yscrollcommand.""" | ||||||
Widget.__init__(self, master, 'listbox', cnf, kw) | ||||||
def activate(self, index): | ||||||
@@ -3412,12 +3416,12 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
"""Construct a radiobutton widget with the parent MASTER. | ||||||
Valid resource names: activebackground, activeforeground, anchor, | ||||||
background, bd, bg, bitmap, borderwidth, command,compound,cursor, | ||||||
disabledforeground, fg, font, foreground, height, highlightbackground, | ||||||
highlightcolor, highlightthickness, image, indicatoron, justify, | ||||||
offrelief, overrelief, padx, pady, relief, selectcolor, selectimage, | ||||||
state, takefocus, text, textvariable,tristateimage, tristatevalue, | ||||||
underline, value, variable,width, wraplength.""" | ||||||
Widget.__init__(self, master, 'radiobutton', cnf, kw) | ||||||
def deselect(self): | ||||||
@@ -3535,22 +3539,22 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
STANDARD OPTIONS | ||||||
background,blockcursor, borderwidth, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. The list of standard options was correct. The 6 additions | ||||||
cursor, endine, exportselection, font, | ||||||
foreground,highlightbackground, highlightcolor, | ||||||
highlightthickness,inactiveselectbackground, | ||||||
insertbackground, insertborderwidth, | ||||||
insertofftime, insertontime, insertunfocused, | ||||||
insertwidth, padx, pady,relief, selectbackground, | ||||||
selectborderwidth, selectforeground, | ||||||
setgrid,startline, tabstyle,takefocus, | ||||||
xscrollcommand, yscrollcommand. | ||||||
WIDGET-SPECIFIC OPTIONS | ||||||
autoseparators, height, maxundo, | ||||||
spacing1, spacing2, spacing3, | ||||||
state, tabs, undo, width, wrap. | ||||||
""" | ||||||
Widget.__init__(self, master, 'text', cnf, kw) | ||||||
@@ -4169,8 +4173,8 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
insertborderwidth, insertofftime, | ||||||
insertontime, insertwidth, justify, relief, | ||||||
repeatdelay, repeatinterval, | ||||||
selectbackground, selectborderwidth, | ||||||
selectforeground, takefocus, textvariable, | ||||||
xscrollcommand. | ||||||
WIDGET-SPECIFIC OPTIONS | ||||||
@@ -4181,8 +4185,8 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
disabledforeground, format, from, | ||||||
invalidcommand, increment, | ||||||
readonlybackground, state, to, | ||||||
validate, validatecommand, values, | ||||||
width, wrap. | ||||||
""" | ||||||
Widget.__init__(self, master, 'spinbox', cnf, kw) | ||||||
@@ -4365,13 +4369,14 @@ def __init__(self, master=None, cnf={}, **kw): | ||||||
STANDARD OPTIONS | ||||||
background, borderwidth, cursor, height, | ||||||
orient, proxybackground, proxyborderwidth, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. height and width were misplaced as standard. They and the 3 new proxy... options should be moved down. | ||||||
proxyrelief, relief, width. | ||||||
WIDGET-SPECIFIC OPTIONS | ||||||
handlepad, handlesize, opaqueresize, | ||||||
sashcursor, sashpad, sashrelief, | ||||||
sashwidth, showhandle. | ||||||
""" | ||||||
Widget.__init__(self, master, 'panedwindow', cnf, kw) | ||||||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Improve the docstrings in the :mod:`tkinter` module. |