New issue 1953: PyPy3 2.4.0 - IDLE https://bitbucket.org/pypy/pypy/issue/1953/pypy3-240-idle
Simon B.: # Using IDLE with PyPy3 2.4.0 # When typing in IDLE under PyPy3 (2.4.0) lots of errors are shown in the console (TypeError: String does not support the buffer interface) , after pressing enter, the program hangs forever. To fix: change line 442 in lib_pypy/_tkinter/app.py from if '\x00' in s: to if b'\x00' in s: _______________________________________________ pypy-issue mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-issue
