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 ned.deily
Recipients larry, masamoto, ned.deily
Date 2014-03-28.20:42:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396039334.29.0.611859437378.issue21088@psf.upfronthosting.co.za>
In-reply-to
Content
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 of _curses.curses window instance
    addch([x, y,] ch, [attr])
    Paint character ch at (y, x) with attributes attr.

      x
        X-coordinate.
      y
        Y-coordinate.
      ch
        Character to add.
      attr
        Attributes for the character.

    Paint character ch at (y, x) with attributes attr,
    overwriting any character previously painted at that location.
    By default, the character position and attributes are the
    current settings for the window object.

Perhaps we should check for others?
History
Date User Action Args
2014-03-28 20:42:14ned.deilysetrecipients: + ned.deily, larry, masamoto
2014-03-28 20:42:14ned.deilysetmessageid: <1396039334.29.0.611859437378.issue21088@psf.upfronthosting.co.za>
2014-03-28 20:42:14ned.deilylinkissue21088 messages
2014-03-28 20:42:14ned.deilycreate