[issue15105] curses: wrong indentation

2014-07-10 Thread Mark Lawrence

Mark Lawrence added the comment:

@vjp sorry about the delay in getting back to you :(

Anyone with curses knowledge who can comment on this please, I'm sorry I'm on 
Windows.

--
nosy: +BreamoreBoy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15105
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15105] curses: wrong indentation

2014-07-10 Thread Ned Deily

Ned Deily added the comment:

Sorry, I am unable to reproduce the failure on a couple of different systems; 
they all work as expected.  If the problem persists, try checking your terminal 
settings and perhaps what version of libncurses* is being used.

--
nosy: +ned.deily
resolution:  - works for me
stage:  - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15105
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15105] curses: wrong indentation

2012-06-19 Thread vjp

New submission from vjp volker.pil...@dectris.com:

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)

--
messages: 163161
nosy: vjp
priority: normal
severity: normal
status: open
title: curses: wrong indentation
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15105
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com