[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-20 Thread Masayuki Yamamoto
Changes by Masayuki Yamamoto light2happy@gmail.com: -- nosy: -masamoto ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-13 Thread Larry Hastings
Changes by Larry Hastings la...@hastings.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-12 Thread STINNER Victor
STINNER Victor added the comment: Can we now close this issue? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___ Python-bugs-list

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f26430b03fd by Larry Hastings in branch '3.4': Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. http://hg.python.org/cpython/rev/4f26430b03fd -- nosy: +python-dev ___ Python tracker

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-04 Thread Larry Hastings
Changes by Larry Hastings la...@hastings.org: -- assignee: - larry resolution: - fixed stage: needs patch - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-05-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3aa5fae8c313 by Larry Hastings in branch 'default': Issue #21088: Merge from 3.4. http://hg.python.org/cpython/rev/3aa5fae8c313 -- ___ Python tracker rep...@bugs.python.org

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-16 Thread Larry Hastings
Larry Hastings added the comment: Here's my version of the patch, which is like Victor's patch but adds a test. For what it's worth, I'll make sure this issue is fixed before I release 3.4.1. -- Added file: http://bugs.python.org/file34939/larry.curses.window.addch.y.x.1.diff

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-08 Thread STINNER Victor
STINNER Victor added the comment: Here is a patch. I don't see how to write a unit test. -- keywords: +patch Added file: http://bugs.python.org/file34770/addch.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-08 Thread STINNER Victor
STINNER Victor added the comment: Redirecting the test to a file fails because curses complains stdio isn't a tty. You may create a the pty module for that. https://docs.python.org/dev/library/pty.html#pty.openpty -- ___ Python tracker

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-08 Thread Larry Hastings
Larry Hastings added the comment: How about examining the inspect.Signature? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-04 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___ Python-bugs-list

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-04-04 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: -ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___ Python-bugs-list mailing list

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-03-28 Thread Masayuki Yamamoto
New submission from Masayuki Yamamoto: 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()

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-03-28 Thread Ned Deily
Ned Deily added the comment: It looks like the arguments were inadvertently swapped during the conversion to Argument Clinic. The Library Reference doc says: window.addch(y, x, ch[, attr]) but the Argument Clinic docstring for 3.4.0 says: Help on built-in function addch: addch(...) method

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-03-28 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- keywords: +3.4regression ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21088 ___ ___ Python-bugs-list

[issue21088] curses addch() argument position reverses in Python3.4.0

2014-03-28 Thread Larry Hastings
Larry Hastings added the comment: That's my fault. That conversion was done at a time when there were a lot fewer eyes looking at AC. It should obviously be fixed, and a test added to the regression test suite. It'd also be nice if running the curses test didn't make reading the result