-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Improve the io module 8000 documentation #15099
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
io
module documentationCo-Authored-By: Ashwin Ramaswami <aramaswamis@gmail.com>
@epicfaace Thank you for the review. I have applied some of your suggestions. |
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.
Can you fix the trailing whitespace errors so that the docs CI build passes?
python tools/rstlint.py -i tools -i ./venv -i README.rst
[1] library/io.rst:674: trailing whitespace
[1] library/io.rst:711: trailing whitespace
[1] library/io.rst:966: trailing whitespace
3 problems with severity 1 found.
@epicfaace Thanks, updated. |
@Mariatta If you have some time, could you review this PR? |
🤖 Mariatta was mentioned, but she's out of open source until end of September 2019. Hopefully someone else can look into this in the meantime. |
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.
Thanks @maggyero for the PR. A few subtle changes are needed and then this PR should be ready to merge. Thanks 👍
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Co-Authored-By: Carol Willing <carolcode@willingconsulting.com>
Thanks @willingc, I have made the requested changes; please review again. |
Thanks for making the requested changes! @willingc: please review the changes made to this pull request. |
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.
Changes look good. Thanks @maggyero.
Thanks @willingc for the review! |
Thanks @maggyero for the PR, and @willingc for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Thanks @maggyero for the PR, and @willingc for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
Sorry, @maggyero and @willingc, I could not cleanly backport this to |
Sorry @maggyero and @willingc, I had trouble checking out the |
@willingc the automatic backport of this PR failed. Should I do anything to make it work? |
* Update io.rst * Apply suggestions from code review Co-Authored-By: Ashwin Ramaswami <aramaswamis@gmail.com> Co-Authored-By: Carol Willing <carolcode@willingconsulting.com>
This PR will apply the following changes to the
io
module documentation:TextIOBase
parent class to theStringIO
class description;newline
parameter of theStringIO
class works like that of theTextIOWrapper
class except when writing to a stream withnewline=None
;