Issue 36523: Add docstring to io.IOBase.writelines
Created on 2019-04-04 08:03 by Marcin Niemira, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 12683 | merged | n0npax, 2019-04-04 08:17 | |
| PR 12905 | merged | n0npax, 2019-04-22 11:27 | |
| Messages (6) | |||
|---|---|---|---|
| msg339434 - (view) | Author: Marcin Niemira (Marcin Niemira) | Date: 2019-04-04 08:03 | |
Hey, There is a missing function doc in `io.IOBase` ```python import os help(io.IOBase.writelines) ``` produces output like: ``` Help on method_descriptor: writelines(self, lines, /) ``` I'll be happy to provide PR for this issue. Cheers, Marcin |
|||
| msg339515 - (view) | Author: Terry J. Reedy (terry.reedy) * ![]() |
Date: 2019-04-05 19:18 | |
Verified. >>> import io >>> io.IOBase.writelines.__doc__ >>> |
|||
| msg339516 - (view) | Author: Terry J. Reedy (terry.reedy) * ![]() |
Date: 2019-04-05 19:20 | |
I assume that this can be backported even though it touches .c rather than .rst. |
|||
| msg340626 - (view) | Author: Marcin Niemira (Marcin Niemira) | Date: 2019-04-22 01:10 | |
Hey, Is there something I can improve in this PR? |
|||
| msg340647 - (view) | Author: Inada Naoki (methane) * ![]() |
Date: 2019-04-22 11:14 | |
New changeset ab86521a9d9999731e39bd9056420bb7774fd144 by Inada Naoki (Marcin Niemira) in branch 'master': bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) https://github.com/python/cpython/commit/ab86521a9d9999731e39bd9056420bb7774fd144 |
|||
| msg340649 - (view) | Author: Inada Naoki (methane) * ![]() |
Date: 2019-04-22 12:08 | |
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 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:13 | admin | set | github: 80704 |
| 2019-04-22 12:09:08 | methane | set | status: open -> closed resolution: fixed stage: patch review -> resolved |
| 2019-04-22 12:08:32 | methane | set | messages: + msg340649 |
| 2019-04-22 11:27:12 | n0npax | set | pull_requests: + pull_request12832 |
| 2019-04-22 11:14:01 | methane | set | nosy:
+ methane messages: + msg340647 |
| 2019-04-22 01:10:54 | Marcin Niemira | set | messages: + msg340626 |
| 2019-04-05 19:20:37 | terry.reedy | set | messages:
+ msg339516 versions: + Python 3.7 |
| 2019-04-05 19:18:21 | terry.reedy | set | nosy:
+ terry.reedy messages:
+ msg339515 |
| 2019-04-04 08:17:29 | n0npax | set | keywords:
+ patch stage: patch review pull_requests: + pull_request12611 |
| 2019-04-04 08:13:01 | xtreak | set | nosy:
+ martin.panter |
| 2019-04-04 08:03:57 | Marcin Niemira | create | |
