summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/__init__.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-02-10 05:44:56 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-02-10 05:44:56 (GMT)
commit3008b1c4bba34eae2682afbd61f8f66ca1683289 (patch)
treea2016c4f34dda3b57c2fee64097b4e16ff4a375b /Lib/tkinter/__init__.py
parent7e3a91a5fc056f72c93f015bb9f4f22aef9e72fb (diff)
parentc04fb56e36999a4162e6ccfe1f9357100abaee99 (diff)
downloadcpython-3008b1c4bba34eae2682afbd61f8f66ca1683289.zip
cpython-3008b1c4bba34eae2682afbd61f8f66ca1683289.tar.gz
cpython-3008b1c4bba34eae2682afbd61f8f66ca1683289.tar.bz2
Issue #26304: Merge doc wording from 3.5
Diffstat (limited to 'Lib/tkinter/__init__.py')
-rw-r--r--Lib/tkinter/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index 46f86f9..eaf7af8 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -2499,7 +2499,7 @@ class Checkbutton(Widget):
self.tk.call(self._w, 'toggle')
class Entry(Widget, XView):
- """Entry widget which allows to display simple text."""
+ """Entry widget which allows displaying simple text."""
def __init__(self, master=None, cnf={}, **kw):
"""Construct an entry widget with the parent MASTER.
@@ -2695,7 +2695,7 @@ class Listbox(Widget, XView, YView):
itemconfig = itemconfigure
class Menu(Widget):
- """Menu widget which allows to display menu bars, pull-down menus and pop-up menus."""
+ """Menu widget which allows displaying menu bars, pull-down menus and pop-up menus."""
def __init__(self, master=None, cnf={}, **kw):
"""Construct menu widget with the parent MASTER.