Kaydet (Commit) 28fdfa98 authored tarafından Georg Brandl's avatar Georg Brandl

#961805: fix Edit.text_modified().

üst 4bfb5939
......@@ -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
......
......@@ -44,6 +44,8 @@ Extension Modules
Library
-------
- Issue #961805: Fix Text.edit_modified() in Tkinter.
- Issue 1793: Function ctypes.util.find_msvcrt() added that returns
the name of the C runtime library that Python uses.
ctypes.util.find_library(name) now call this function when name is
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment