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 vjp
Recipients vjp
Date 2012-06-19.13:19:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340111999.91.0.28631303072.issue15105@psf.upfronthosting.co.za>
In-reply-to
Content
Running the program below on Linux (CentOS 5 and 6) two lines are printed, of which the second one is not correctly indented:

Output is:
1234567012345670
               012345670
rather than 
1234567012345670
       012345670




import curses
import time

def display(screen):
    while 1:
        screen.erase()
        screen.addstr("1234567012345670\n")
        screen.addstr("       012345670\n")
        screen.refresh()

        time.sleep(100)
                        
curses.wrapper(display)
History
Date User Action Args
2012-06-19 13:19:59vjpsetrecipients: + vjp
2012-06-19 13:19:59vjpsetmessageid: <1340111999.91.0.28631303072.issue15105@psf.upfronthosting.co.za>
2012-06-19 13:19:59vjplinkissue15105 messages
2012-06-19 13:19:58vjpcreate