[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2020-07-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.10 -Python 2.7, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___ ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2020-06-24 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +20281 pull_request: https://github.com/python/cpython/pull/21118 ___ Python tracker ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Few new options were added: see issue34189. -- ___ Python tracker ___ ___ Python-bugs-list

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Noah Haasis added the comment: This are all the classes where the keywords are missing in the docs and their missing keywords: TopLevel ['padx', 'pady'] Checkbutton ['compound', 'offrelief', 'overrelief', 'tristateimage', 'tristatevalue'] Entry ['disabledbackground', 'disabledforeground',

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Change by Noah Haasis : -- keywords: +patch pull_requests: +7909 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Noah Haasis added the comment: This is a list of all valid keywordarguments of Listbox.__init__() listed in the test file: 'activestyle', 'background', 'borderwidth', 'cursor', 'disabledforeground', 'exportselection', 'font', 'foreground', 'height', 'highlightbackground', 'highlightcolor',

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The official Tk documentation is not always correct. OPTIONS attributes in tests should contain full lists of supported options, and running tests produces warnings for missed options, like: ListboxTest.OPTIONS doesn't contain "justify". --

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-20 Thread Creation Elemental
Creation Elemental added the comment: Ah, yes. That is what I meant to say. The doc string printed by help(widget) -- ___ Python tracker ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: By documentation, you mean the doc string for each widget, which is the basis for the help(widget) response. I checked that there do not seem to be any other issues open for the docstrings. Go ahead. Use https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-20 Thread Noah Haasis
Noah Haasis added the comment: I'd like to work on this, if it's ok for everybody. -- nosy: +noah.haasis ___ Python tracker ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-18 Thread Creation Elemental
New submission from Creation Elemental : Priority: Low Type: Documentation issue Some of the Tkinter documentation is incomplete. I've only checked it on the Listbox so far, but some of the valid keyword arguments are missing. The one I noticed was "disabledforeground" which changes how the