This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zach.ware
Recipients docs@python, jfine2358, paul.moore, zach.ware
Date 2021-07-13.16:18:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626193089.19.0.593876719047.issue44623@roundup.psfhosted.org>
In-reply-to
Content
Even with 3.6 I get a different result:

```
Python 3.6.13 (tags/v3.6.13:aa73e1722e, Mar 23 2021, 15:45:49) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> help(open('/dev/zero').writelines)
Help on built-in function writelines:

writelines(lines, /) method of _io.TextIOWrapper instance

```

This appears to be because TextIOWrapper.writelines just didn't have a docstring in 3.6.  I can't explain why `help` just gave you the repr of the method, though.
History
Date User Action Args
2021-07-13 16:18:09zach.waresetrecipients: + zach.ware, paul.moore, docs@python, jfine2358
2021-07-13 16:18:09zach.waresetmessageid: <1626193089.19.0.593876719047.issue44623@roundup.psfhosted.org>
2021-07-13 16:18:09zach.warelinkissue44623 messages
2021-07-13 16:18:09zach.warecreate