[issue36523] Add docstring to io.IOBase.writelines

2019-04-22 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36523] Add docstring to io.IOBase.writelines

2019-04-22 Thread Inada Naoki
Inada Naoki added the comment: New changeset 1100ae8f3fb1d5a8f6f5638919196bd8fab66de9 by Inada Naoki (Marcin Niemira) in branch '3.7': bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) https://github.com/python/cpython/commit/1100ae8f3fb1d5a8f6f5638919196bd8fab66de9 --

[issue36523] Add docstring to io.IOBase.writelines

2019-04-22 Thread Marcin Niemira
Change by Marcin Niemira : -- pull_requests: +12832 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36523] Add docstring to io.IOBase.writelines

2019-04-22 Thread Inada Naoki
Inada Naoki added the comment: New changeset ab86521a9d731e39bd9056420bb7774fd144 by Inada Naoki (Marcin Niemira) in branch 'master': bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) https://github.com/python/cpython/commit/ab86521a9d731e39bd9056420bb7774fd144 --

[issue36523] Add docstring to io.IOBase.writelines

2019-04-21 Thread Marcin Niemira
Marcin Niemira added the comment: Hey, Is there something I can improve in this PR? -- ___ Python tracker ___ ___ Python-bugs-list

[issue36523] Add docstring to io.IOBase.writelines

2019-04-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I assume that this can be backported even though it touches .c rather than .rst. -- versions: +Python 3.7 ___ Python tracker ___

[issue36523] Add docstring to io.IOBase.writelines

2019-04-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Verified. >>> import io >>> io.IOBase.writelines.__doc__ >>> -- nosy: +terry.reedy title: missing docs for IOBase writelines -> Add docstring to io.IOBase.writelines ___ Python tracker