Re: [Python-Dev] Problems with events in a numeric keyboard

2009-08-26 Thread Greg Ewing
Martin Zugnoni wrote: when I press the triple zero key once, I receive three events from the single zero key. I need to make a disctintion between these keys Sounds like you can't, except perhaps by detecting three '0' key events arriving at almost the same time. -- Greg __

Re: [Python-Dev] Problems with events in a numeric keyboard

2009-08-25 Thread Steven D'Aprano
On Wed, 26 Aug 2009 01:17:50 am Martin Zugnoni wrote: > Hi! I'm trying to catch the triple zero (000) key from a numeric > keyboard... This list is for the development *of* the Python language, not development *with* Python. You should probably try the comp.lang.python newsgroup, also available

[Python-Dev] Problems with events in a numeric keyboard

2009-08-25 Thread Martin Zugnoni
Hi! I'm trying to catch the triple zero (000) key from a numeric keyboard but, I found that it's the same id that the single zero. So, when I press the triple zero key once, I receive three events from the single zero key. I need to make a disctintion between these keys, and use them to different f