-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-8243: Doc patch for curses.window.addstr and curses.window.addch #5179
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
Conversation
Doc/library/curses.rst
Outdated
|
||
Writing outside the window, subwindow, or pad raises :exc:`curses.error`. | ||
Attempting to write to the lower right corner of a window, subwindow, | ||
or pad will cause an exception to be raised after the character is printed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace after the caracter is printed
by after the string is printed
Could you rebase your commits ? 5 commits should become 1 commit. Thank you, |
Sure, I will make the change, and then rebase. |
Okay, I made the changes, and rebased my commits. Thanks for the help. |
Thanks @jcrotts for the PR, and @ned-deily for merging it 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
GH-6404 is a backport of this pull request to the 3.7 branch. |
…ythonGH-5179) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
GH-6405 is a backport of this pull request to the 2.7 branch. |
…ythonGH-5179) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
…ythonGH-5179) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
GH-6406 is a backport of this pull request to the 3.6 branch. |
…addch (GH-5179) (GH-6404) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
…addch (GH-5179) (GH-6406) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
…addch (GH-5179) (GH-6405) (cherry picked from commit ef5ce88) Co-authored-by: Jay Crotts <[email protected]>
bpo-8243: Doc patch for curses.window.addstr and curses.window.addch
Added documentation notes for two functions in curses.window .
This is my first pr, please let me know what else I need to do.
https://bugs.python.org/issue8243