Skip to content

Commit

Permalink
bpo-18699: Corrected documentation for window.chgat in curses module (G…
Browse files Browse the repository at this point in the history
…H-1430) (#4271)

(cherry picked from commit b838cc3)
  • Loading branch information
miss-islington authored and serhiy-storchaka committed Nov 4, 2017
1 parent ec2b2dc commit 6dbecd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Doc/library/curses.rst
Expand Up @@ -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()
Expand Down

0 comments on commit 6dbecd2

Please sign in to comment.