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 tkinter
Recipients GNJ, klappnase, serhiy.storchaka, tkinter
Date 2016-10-26.18:49:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477507793.13.0.175450137895.issue28498@psf.upfronthosting.co.za>
In-reply-to
Content
Using the same reasoning applied to tk_busy_hold(), we have to change also these methods:
    selection_set(self, first, last=None) -> selection_set(self, **kw)
    coords(self, value=None) -> coords(self, **kw)
    identify(self, x, y) -> identity(self, **kw)
    delete(self, index1, index2=None) -> delete(self, **kw)
    mark_set(self, markName, index) -> ...
    mark_unset(self, *markNames) -> ...
    ....

and many other to adapt to future changes.
History
Date User Action Args
2016-10-26 18:49:53tkintersetrecipients: + tkinter, klappnase, serhiy.storchaka, GNJ
2016-10-26 18:49:53tkintersetmessageid: <1477507793.13.0.175450137895.issue28498@psf.upfronthosting.co.za>
2016-10-26 18:49:53tkinterlinkissue28498 messages
2016-10-26 18:49:52tkintercreate