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: Typo and broken links in page "What's New In Python 3.5"
Type: enhancement Stage:
Components: Documentation Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Lorenzo Pascucci, docs@python, python-dev
Priority: normal Keywords:

Created on 2016-09-09 19:44 by Lorenzo Pascucci, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg275407 - (view) Author: Lorenzo Pascucci (Lorenzo Pascucci) Date: 2016-09-09 19:44
In the documentation page "What's New In Python 3.5" there is a small typo within the section "Improved Modules" related to `asyncio` [0], along with 3 broken links.

Typo:
The function `loop.set_task_factory()` appears linked twice, but the second link is actually for the function `loop.get_task_factory()`.

Links:
The (duplicate) link for `loop.set_task_factory()` and the link for `loop.create_task()` point to the right documentation page, but to wrong anchors: they refer to `BaseEventLoop` whereas they should refer to `AbstractEventLoop`.


[0] https://docs.python.org/3/whatsnew/3.5.html#asyncio
msg275408 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-09 19:47
New changeset 8e74e76deda1 by Benjamin Peterson in branch '3.5':
repair errors in (set|get)_task_factory note (#28051)
https://hg.python.org/cpython/rev/8e74e76deda1

New changeset ace662dbfdb6 by Benjamin Peterson in branch 'default':
merge 3.5 (#28051)
https://hg.python.org/cpython/rev/ace662dbfdb6
History
Date User Action Args
2022-04-11 14:58:36adminsetgithub: 72238
2016-09-09 20:26:34benjamin.petersonsetstatus: open -> closed
resolution: fixed
2016-09-09 19:47:17python-devsetnosy: + python-dev
messages: + msg275408
2016-09-09 19:44:40Lorenzo Pascuccicreate