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.

Author rhettinger
Recipients rhettinger, terry.reedy
Date 2018-11-09.10:00:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541757652.98.0.788709270274.issue35196@psf.upfronthosting.co.za>
In-reply-to
Content
The squeezed text is impairing IDLE's usability for teaching purposes.  Typing help() on any built-in type such as str immediately results in a squeeze-button rather than displaying help.  The same is true for showing lines from a file read or from a URL.

I recommend showing the first 50 to 100 lines and then squeezing the remainder.

Also, I think this may be the logic that is slowing down successive print calls in a loop.  Try running:

    for i in range(500):
        print(i, sep=' ')

or even:

    for i in range(500):
        print(i, i**2)

The output has noticeably slow delays between successive print() calls.
History
Date User Action Args
2018-11-09 10:00:53rhettingersetrecipients: + rhettinger, terry.reedy
2018-11-09 10:00:52rhettingersetmessageid: <1541757652.98.0.788709270274.issue35196@psf.upfronthosting.co.za>
2018-11-09 10:00:52rhettingerlinkissue35196 messages
2018-11-09 10:00:52rhettingercreate