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.

classification
Title: Minor markup issue in reference/datamodel docs
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: artakase, berker.peksag, docs@python, python-dev
Priority: normal Keywords: patch

Created on 2015-10-16 06:16 by artakase, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
datamodel.patch artakase, 2015-10-16 06:16 review
Messages (3)
msg253068 - (view) Author: TAKASE Arihiro (artakase) Date: 2015-10-16 06:16
https://docs.python.org/3/reference/datamodel.html#object.__hash__

The closing parenthesis of "isinstance(obj, collections.Hashable)" is outside the markup.

The attached patch fixes it.
msg253069 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-10-16 08:22
New changeset 389c78c2c031 by Berker Peksag in branch '3.4':
Issue #25418: Fix markup in object.__hash__ documentation
https://hg.python.org/cpython/rev/389c78c2c031

New changeset f56006107a4b by Berker Peksag in branch '3.5':
Issue #25418: Fix markup in object.__hash__ documentation
https://hg.python.org/cpython/rev/f56006107a4b

New changeset 0aaadc1c60fd by Berker Peksag in branch 'default':
Issue #25418: Fix markup in object.__hash__ documentation
https://hg.python.org/cpython/rev/0aaadc1c60fd
msg253070 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-10-16 08:24
Good catch, thanks!
History
Date User Action Args
2022-04-11 14:58:22adminsetgithub: 69604
2015-10-16 08:24:01berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg253070

resolution: fixed
stage: resolved
2015-10-16 08:22:58python-devsetnosy: + python-dev
messages: + msg253069
2015-10-16 06:16:42artakasecreate