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 terry.reedy
Recipients amaury.forgeotdarc, georg.brandl, techtonik, terry.reedy, vstinner
Date 2011-03-23.19:25:00
SpamBayes Score 4.2163883e-11
Marked as misclassified No
Message-id <1300908301.25.0.596856676319.issue11633@psf.upfronthosting.co.za>
In-reply-to
Content
I completely agree that file/socket output should be left alone. Flushing char by char to either is a bit insane. The two interactive to screen use cases I can think of are text progress meters, mentioned by Anatoly, such as :
  Working .... (1 dot printed at intervals)
and timed text like

import time
for c in 'Similated 10 cps teletype output':
    print(c,end='')
    time.sleep(.1)
print()

which works fine from IDLE and whose non-functioning when started otherwise would puzzle any beginner and many beyond.
History
Date User Action Args
2011-03-23 19:25:01terry.reedysetrecipients: + terry.reedy, georg.brandl, amaury.forgeotdarc, vstinner, techtonik
2011-03-23 19:25:01terry.reedysetmessageid: <1300908301.25.0.596856676319.issue11633@psf.upfronthosting.co.za>
2011-03-23 19:25:00terry.reedylinkissue11633 messages
2011-03-23 19:25:00terry.reedycreate