Python: Why is IDLE so slow?

前端 未结 2 1257
梦谈多话
梦谈多话 2020-12-01 18:07

IDLE is my favorite Python editor. It offers very nice and intuitive Python shell which is extremely useful for unit-testing and debugging, and a neat debugger.

2条回答
  •  渐次进展
    2020-12-01 18:46

    The problem is in the Tkinter Text widget, and its inefficient management of very long lines, and you create one. You'll notice that, while any part of a very long line is visible, all scrolling is devilishly slow.

提交回复
热议问题