Commit b838cc3f authored by Chillar Anand's avatar Chillar Anand Committed by Serhiy Storchaka

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

parent ee1a9a2b
......@@ -788,10 +788,10 @@ 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.
the attribute will be set on all the characters to the end of the line. This
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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment