8000 bpo-18669: Corrected documentation for window.chgat in curses module by ChillarAnand · Pull Request #1430 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-18669: Corrected documentation for window.chgat in curses module #1430

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 4, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into bpo-18699-doc
  • Loading branch information
serhiy-storchaka authored Nov 1, 2017
commit 4b11403904195966e190824c3b3ce048b9692f23
4 changes: 2 additions & 2 deletions Doc/library/curses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -787,8 +787,8 @@ the following methods and attributes:
window.chgat(y, x, num, attr)

Set the attributes of *num* characters at the current cursor position, or at
position ``(y, x)`` if supplied. If no value of *num* is given or *num* = -1,
the attribute will be set on all the characters to the end of the line. This
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 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.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0