New issue 1899: Regression in tkinter in PyPy3 2.4
https://bitbucket.org/pypy/pypy/issue/1899/regression-in-tkinter-in-pypy3-24

mario_:

Pressing return causes an exception in PyPy3 2.4 but not in CPython or an older 
PyPy3.

```

#!python

from tkinter import *
root = Tk()
text = Text(root)
text.pack()
text.bind('<Return>', lambda event: print('hello'))
mainloop()
```



_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to