mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#961805: fix Edit.text_modified().
This commit is contained in:
parent
4bfb59390c
commit
28fdfa9839
2 changed files with 3 additions and 2 deletions
|
@ -2908,8 +2908,7 @@ class Text(Widget):
|
||||||
and edit_undo
|
and edit_undo
|
||||||
|
|
||||||
"""
|
"""
|
||||||
return self._getints(
|
return self.tk.call(self._w, 'edit', *args)
|
||||||
self.tk.call((self._w, 'edit') + args)) or ()
|
|
||||||
|
|
||||||
def edit_modified(self, arg=None):
|
def edit_modified(self, arg=None):
|
||||||
"""Get or Set the modified flag
|
"""Get or Set the modified flag
|
||||||
|
|
|
@ -44,6 +44,8 @@ Extension Modules
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #961805: Fix Text.edit_modified() in Tkinter.
|
||||||
|
|
||||||
- Issue 1793: Function ctypes.util.find_msvcrt() added that returns
|
- Issue 1793: Function ctypes.util.find_msvcrt() added that returns
|
||||||
the name of the C runtime library that Python uses.
|
the name of the C runtime library that Python uses.
|
||||||
ctypes.util.find_library(name) now call this function when name is
|
ctypes.util.find_library(name) now call this function when name is
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue