Message382999
| Author | spacether |
|---|---|
| Recipients | spacether |
| Date | 2020-12-14.18:24:18 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1607970258.08.0.646497710743.issue42640@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Sorry my verification keyboard listener program is not the pygame one. It is this one:
```
from tkinter import *
def keyup(e):
print('up', e.__dict__)
def keydown(e):
print('down', e.__dict__)
root = Tk()
frame = Frame(root, width=100, height=100)
frame.bind("<KeyPress>", keydown)
frame.bind("<KeyRelease>", keyup)
frame.pack()
frame.focus_set()
root.mainloop()
``` |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-12-14 18:24:18 | spacether | set | recipients: + spacether |
| 2020-12-14 18:24:18 | spacether | set | messageid: <1607970258.08.0.646497710743.issue42640@roundup.psfhosted.org> |
| 2020-12-14 18:24:18 | spacether | link | issue42640 messages |
| 2020-12-14 18:24:18 | spacether | create | |