Skip to content

Commit 3e7b3d3

Browse files
Apply suggestions from code review
Co-authored-by: Brian Skinn <brian.skinn@gmail.com>
1 parent 3076927 commit 3e7b3d3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/tkinter/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ def _configure(self, cmd, cnf, kw):
18291829
def configure(self, cnf=None, **kw):
18301830
"""Query or modify the configuration options of the widget.
18311831
1832-
If no arguments is specified, return a dictionary describing
1832+
If no arguments are specified, return a dictionary describing
18331833
all of the available options for the widget.
18341834
18351835
If an option name is specified, then return a tuple describing
@@ -4893,12 +4893,12 @@ def sash_place(self, index, x, y):
48934893
return self.sash("place", index, x, y)
48944894

48954895
def panecget(self, child, option):
4896-
"""Return the value of option for window."""
4896+
"""Return the value of option for a child window."""
48974897
return self.tk.call(
48984898
(self._w, 'panecget') + (child, '-'+option))
48994899

49004900
def paneconfigure(self, tagOrId, cnf=None, **kw):
4901-
"""Query or modify the configuration options for window TAGORID.
4901+
"""Query or modify the configuration options for a child window.
49024902
49034903
Similar to configure() except that it applies to the specified
49044904
window.

0 commit comments

Comments
 (0)