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 terry.reedy
Recipients ash101, corvus, garyrxx, georg.brandl, johnfouhy, loewis, orthorim, sdati, terry.reedy
Date 2009-03-25.02:09:54
SpamBayes Score 7.1253105e-08
Marked as misclassified No
Message-id <1237946997.02.0.192270749136.issue834351@psf.upfronthosting.co.za>
In-reply-to
Content
3.0.1, WinXP, with two 3.0 revisions:

from tkinter import *
def _onMouseWheel(event):
    print(event)

root = Tk()
root.bind('<MouseWheel>',_onMouseWheel)

In IDLE shell, nothing changes, wheel works normally.

In interpreter window, wheel continues to work normally.
After click on tk window, wheel generates
<tkinter.Event object at 0x00ACE970>
messages in interpreter window.

Unless someone can verify that there is a problem in 2.6.1, or in 3.0.1
on other hardware, we should close this.
History
Date User Action Args
2009-03-25 02:09:57terry.reedysetrecipients: + terry.reedy, loewis, birkenfeld, corvus, garyrxx, ash101, johnfouhy, sdati, orthorim
2009-03-25 02:09:57terry.reedysetmessageid: <1237946997.02.0.192270749136.issue834351@psf.upfronthosting.co.za>
2009-03-25 02:09:54terry.reedylinkissue834351 messages
2009-03-25 02:09:54terry.reedycreate