diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-24 10:43:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-24 10:43:29 (GMT) |
commit | c95c93d4eb0519beaa06e6b6e0ecca7c2a58f69c (patch) | |
tree | 700a509aba514a0011d6c786874d79df7dae5081 /Misc | |
parent | f1e17e9f97d9a4e97a5d99574775ee343a3a74fb (diff) | |
download | cpython-c95c93d4eb0519beaa06e6b6e0ecca7c2a58f69c.zip cpython-c95c93d4eb0519beaa06e6b6e0ecca7c2a58f69c.tar.gz cpython-c95c93d4eb0519beaa06e6b6e0ecca7c2a58f69c.tar.bz2 |
bpo-20285: Improve help docs for object (GH-4759)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2017-12-08-20-30-37.bpo-20285.cfnp0J.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2017-12-08-20-30-37.bpo-20285.cfnp0J.rst b/Misc/NEWS.d/next/Documentation/2017-12-08-20-30-37.bpo-20285.cfnp0J.rst new file mode 100644 index 0000000..ebe0c3f --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2017-12-08-20-30-37.bpo-20285.cfnp0J.rst @@ -0,0 +1,3 @@ +Expand object.__doc__ (docstring) to make it clearer. +Modify pydoc.py so that help(object) lists object methods +(for other classes, help omits methods of the object base class.) |