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 masamoto
Recipients masamoto
Date 2014-03-28.19:51:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396036290.82.0.606042459455.issue21088@psf.upfronthosting.co.za>
In-reply-to
Content
There is a test code that is "RB" characters display on screen. I expected displaying "R" to right, and displaying "B" to bottom. It was run as expected in Python 2.7.3 and 3.2.3 on Cygwin.
But they were displayed reverse in Python 3.4.0. And when addch() arguments reversed, they were displayed in expected positions.

import curses

def test(stdscr):
    stdscr.addch(0, 5, b'R')
    stdscr.addch(5, 0, b'B')
    stdscr.refresh()
    stdscr.getch()

curses.wrapper(test)

Please make sure of issues, and fix it.
Thanks.
History
Date User Action Args
2014-03-28 19:51:30masamotosetrecipients: + masamoto
2014-03-28 19:51:30masamotosetmessageid: <1396036290.82.0.606042459455.issue21088@psf.upfronthosting.co.za>
2014-03-28 19:51:30masamotolinkissue21088 messages
2014-03-28 19:51:30masamotocreate