summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-17 17:57:01 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-17 17:57:01 (GMT)
commit28fdfa98397b38017d996705e2fc3e4292bf28b6 (patch)
treeae501fd05ee1d30d87a6d4c82330d48cb3be04de /Lib
parent4bfb59390c02f450e9bdc0e5e3c75b4d971f3b55 (diff)
downloadcpython-28fdfa98397b38017d996705e2fc3e4292bf28b6.zip
cpython-28fdfa98397b38017d996705e2fc3e4292bf28b6.tar.gz
cpython-28fdfa98397b38017d996705e2fc3e4292bf28b6.tar.bz2
#961805: fix Edit.text_modified().
Diffstat (limited to 'Lib')
-rw-r--r--Lib/tkinter/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index 00af737..32bdaba 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -2908,8 +2908,7 @@ class Text(Widget):
and edit_undo
"""
- return self._getints(
- self.tk.call((self._w, 'edit') + args)) or ()
+ return self.tk.call(self._w, 'edit', *args)
def edit_modified(self, arg=None):
"""Get or Set the modified flag