This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronpro@cox.net
Recipients
Date 2005-11-21.03:13:59
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Tkinter's Text widget has a method edit_modified()
which should return True if the modified flag of the
widget has been set, False otherwise.  It should also
be possible to pass True or False into the method to
set the flag to a desired state.  The implementation
retrieves the correct value, but then calls
self._getints( result ).  This causes an exception to
be thrown.

In my build, I found that changing the implementation
to the following appears to fix the function.

  return self.tk.call( self._w, 'edit', 'modified', arg )

History
Date User Action Args
2008-01-20 09:58:16adminlinkissue1362475 messages
2008-01-20 09:58:16admincreate