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: Link isinstance/issubclass doc to abc module
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: eric.araujo Nosy List: eric.araujo, ezio.melotti, python-dev, sandro.tosi
Priority: normal Keywords: needs review, patch

Created on 2011-06-03 16:55 by eric.araujo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
link-isinstance-to-abc.diff eric.araujo, 2011-06-03 16:55 review
Messages (5)
msg137556 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-06-03 16:55
Doc/library/functions.rst does not talk about how ABC interact with isinstance or issubclass.  This simple patch adds a link.
msg141696 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2011-08-05 23:40
I think the patch is fine to apply.
msg142428 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-08-19 12:25
New changeset eeb8a440bde0 by Éric Araujo in branch '3.2':
Link isinstance/issubclass to the ABC glossary entry (#12256)
http://hg.python.org/cpython/rev/eeb8a440bde0

New changeset e2e8c752c1b6 by Éric Araujo in branch '3.2':
Mention virtual subclasses in the glossary entry for ABCs (#12256).
http://hg.python.org/cpython/rev/e2e8c752c1b6

New changeset 5160d8eb3468 by Éric Araujo in branch 'default':
Merge fixes for #12256 and typos from 3.2
http://hg.python.org/cpython/rev/5160d8eb3468
msg142430 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-08-19 12:28
New changeset 96222062239f by Éric Araujo in branch '2.7':
Link isinstance/issubclass to the ABC glossary entry (#12256)
http://hg.python.org/cpython/rev/96222062239f
msg142435 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-08-19 12:36
I committed a modified version of the patch.
History
Date User Action Args
2022-04-11 14:57:18adminsetgithub: 56465
2011-08-19 12:36:48eric.araujosetstatus: open -> closed
resolution: fixed
messages: + msg142435

stage: commit review -> resolved
2011-08-19 12:28:05python-devsetmessages: + msg142430
2011-08-19 12:25:09python-devsetnosy: + python-dev
messages: + msg142428
2011-08-05 23:40:13sandro.tosisetnosy: + ezio.melotti, sandro.tosi

messages: + msg141696
stage: patch review -> commit review
2011-06-03 16:55:25eric.araujocreate