[issue1074333] input from numeric pad always dropped when numlock off

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list

[issue1074333] input from numeric pad always dropped when numlock off

2009-04-23 Thread Guilherme Polo
Guilherme Polo added the comment: > When numlock is on, it would still > move one line up. We could change it to fix this problem, but then we > would be using tk::TextUpDownLine which is marked as unsupported > (basically everything that could help us in such situations is marked as > unsupport

[issue1074333] input from numeric pad always dropped when numlock off

2009-04-23 Thread Guilherme Polo
Guilherme Polo added the comment: Unfortunately this is not that easy for us, while we could add some code like this: import Tkinter text = Tkinter.Text() text.event_add("<>", "") text.event_add("<>", "") text.bind_class("Text", "<>", text.bind_class("Text", "")) text.pack() text.mainloop() i

[issue1074333] input from numeric pad always dropped when numlock off

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +gpolo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1074333] input from numeric pad always dropped when numlock off

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk, the (80) events show in a terminal if one adds some print-based debug help. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker