[Python-checkins] r63412 - in python/trunk: Lib/tkinter/__init__.py Misc/NEWS

georg.brandl python-checkins at python.org
Sat May 17 19:57:02 CEST 2008


Author: georg.brandl
Date: Sat May 17 19:57:01 2008
New Revision: 63412

Log:
#961805: fix Edit.text_modified().


Modified:
   python/trunk/Lib/tkinter/__init__.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/tkinter/__init__.py
==============================================================================
--- python/trunk/Lib/tkinter/__init__.py	(original)
+++ python/trunk/Lib/tkinter/__init__.py	Sat May 17 19:57:01 2008
@@ -2908,8 +2908,7 @@
         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

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sat May 17 19:57:01 2008
@@ -44,6 +44,8 @@
 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


More information about the Python-checkins mailing list