Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
a6b9bd6
bpo-25237: Documentation for tkinter modules
patel-nikhil May 30, 2017
561eb09
fix formatting as indicated by CI build
patel-nikhil May 30, 2017
5b0b258
fixed remaining formatting errors
patel-nikhil May 30, 2017
d676fd4
Merge branch 'master' of git://github.com/python/cpython into bpo-25237
patel-nikhil Jun 1, 2017
b69a5bd
Elaborated descriptors, improved logical grouping and general organiz…
patel-nikhil Jun 2, 2017
ca978b4
Merge branch 'master' of git://github.com/python/cpython into bpo-25237
patel-nikhil Jun 2, 2017
7796d04
Changed occurrence of method to function, other trivial missed in prev
patel-nikhil Jun 2, 2017
a76f333
Merge branch 'master' of git://github.com/python/cpython into bpo-25237
patel-nikhil Jun 2, 2018
3750903
Added news entry under Misc/News.d/next
patel-nikhil Jun 2, 2018
0aa90d1
Revised wording and added clarification about modal dialogs
patel-nikhil Jun 3, 2018
ea465be
First changeset per requested changes
patel-nikhil Jul 28, 2018
231627c
Second changeset per requested changes
patel-nikhil Aug 8, 2018
6069457
Updated wording of Font size parameter description. Changed 'allowed'…
patel-nikhil Oct 5, 2018
22e2d2d
Added back double asterisks to represent options as keyword argument …
patel-nikhil Oct 6, 2018
9edcc0d
Added missing sentence-ending periods. Minor changes and fixes as req…
patel-nikhil Oct 10, 2018
e62c782
Condensed Tkinter dialog documentation to a single page
patel-nikhil Nov 2, 2018
de4b28c
Minor updates to wording and formatting
patel-nikhil Sep 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed occurrence of method to function, other trivial missed in prev
  • Loading branch information
patel-nikhil committed Jun 2, 2017
commit 7796d0455a216f06e077a0f16493f2fef168efe5
2 changes: 1 addition & 1 deletion Doc/library/tkinter.colorchooser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class.

.. class:: Chooser(master=None, **options)

.. method:: askcolor(color=None, **options)
.. function:: askcolor(color=None, **options)

The *askcolor* method is a factory method that creates a color choosing
dialog.
Expand Down
10 changes: 5 additions & 5 deletions Doc/library/tkinter.simpledialog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
The :mod:`tkinter.simpledialog` module contains the standard classes and
functions for handling dialogs, including custom dialog windows.

Comment thread
JulienPalard marked this conversation as resolved.
Outdated
.. class:: Dialog(self, parent, title = None)
.. class:: Dialog(parent, title=None)

The base class for custom dialogs
The base class for custom dialogs.

.. method:: body(self, master)
.. method:: body(master)

Override to construct the dialog's interface and return widget that
should have initial focus
should have initial focus.
Comment thread
JulienPalard marked this conversation as resolved.
Outdated

.. method:: buttonbox(self)
.. method:: buttonbox()

Default behaviour adds OK and Cancel buttons. Override for custom button
layouts.
Expand Down