bpo-18699: Corrected documentation for window.chgat in curses module (#1430)

This commit is contained in:
Chillar Anand 2017-11-04 13:43:16 +05:30 committed by Serhiy Storchaka
parent ee1a9a2b78
commit b838cc3ff4
1 changed files with 4 additions and 4 deletions

View File

@ -789,9 +789,9 @@ the following methods and attributes:
Set the attributes of *num* characters at the current cursor position, or at
position ``(y, x)`` if supplied. If *num* is not given or is ``-1``,
the attribute will be set on all the characters to the end of the line. This
function does not move the cursor. The changed line will be touched using the
:meth:`touchline` method so that the contents will be redisplayed by the next
window refresh.
function moves cursor to position ``(y, x)`` if supplied. The changed line
will be touched using the :meth:`touchline` method so that the contents will
be redisplayed by the next window refresh.
.. method:: window.clear()