This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2016年05月22日 01:43 by rhettinger, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg266041 - (view) | Author: Raymond Hettinger (rhettinger) * (Python committer) | Date: 2016年05月22日 01:43 | |
IDLE should check the size of lines in a result string before printing it. Perhaps it should have a "..." after some user settable limit is reached. >>> '=' * 100000 # Destroys IDLE >>> json.load(somebigfile) # Makes IDLE unusably sluggish The problem only occurs when an individual line is long: >>> s = 'some reasonable single line\n' * 1000) >>> print(s) # Separate lines are no problem >>> s # A big single line repr renders IDLE sluggish Note, the sluggishness persists across sessions -- a "Restart Shell" doesn't help. In my Python classes, this is a common and recurring problem that negatively impacts the learner's user experience. |
|||
| msg266042 - (view) | Author: Tim Peters (tim.peters) * (Python committer) | Date: 2016年05月22日 01:47 | |
Ya, this annoyance has been there forever. As I recall, the source of the problem is the Tk text widget (which slows horribly when displaying long lines). |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:31 | admin | set | github: 71269 |
| 2016年05月22日 04:18:59 | terry.reedy | set | status: open -> closed resolution: duplicate superseder: IDLE shell window gets very slow when displaying long lines stage: resolved |
| 2016年05月22日 01:47:21 | tim.peters | set | nosy:
+ tim.peters messages: + msg266042 |
| 2016年05月22日 01:43:03 | rhettinger | create | |