Message215074
| 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:30 | masamoto | set | recipients:
+ masamoto |
| 2014年03月28日 19:51:30 | masamoto | set | messageid: <1396036290.82.0.606042459455.issue21088@psf.upfronthosting.co.za> |
| 2014年03月28日 19:51:30 | masamoto | link | issue21088 messages |
| 2014年03月28日 19:51:30 | masamoto | create |
|