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: Spec for BaseEventLoop.run_in_executor(executor, callback, *args) is outdated in documentation
Type: enhancement 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: asvetlov, devoto13, docs@python, gvanrossum, nchammas, vstinner, yselivanov
Priority: normal Keywords: easy

Created on 2015-09-30 20:33 by devoto13, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg251961 - (view) Author: Yaroslav Admin (devoto13) Date: 2015-09-30 20:33
Parameter for BaseEventLoop.run_in_executor(executor, callback, *args) was renamed from callback to func in 3.5.0 release, but it's not reflected in the docs.

Commit with change: https://github.com/python/cpython/commit/111610562141a46f1eaac64d497d79fe13290847#diff-08afa52ab2b1511bee8527814ad44d80L468
Documentation: https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.BaseEventLoop.run_in_executor
msg251972 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2015-09-30 21:17
Someone please submit a patch...
msg251999 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2015-10-01 06:50
Fixed in 9a10055e12fa d7d18ef3e05c 1465b18ef4fc
History
Date User Action Args
2022-04-11 14:58:22adminsetgithub: 69471
2015-10-01 06:50:33asvetlovsetstatus: open -> closed

versions: + Python 3.4, Python 3.6
nosy: + asvetlov

messages: + msg251999
resolution: fixed
stage: resolved
2015-09-30 21:17:48gvanrossumsetnosy: + docs@python
messages: + msg251972

assignee: docs@python
components: + Documentation, - asyncio
keywords: + easy
2015-09-30 21:15:22nchammassetnosy: + nchammas
2015-09-30 20:35:02devoto13settitle: Docs for BaseEventLoop.run_in_executor(executor, callback, *args) is outdated in documentation -> Spec for BaseEventLoop.run_in_executor(executor, callback, *args) is outdated in documentation
2015-09-30 20:33:57devoto13create