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.

Author serhiy.storchaka
Recipients asvetlov, docs@python, kj, serhiy.storchaka, yselivanov
Date 2022-02-17.12:54:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645102456.61.0.455925245808.issue46777@roundup.psfhosted.org>
In-reply-to
Content
There are some issues with formatting added or removed parameters in the asyncio module.

1. "deprecated-removed" directives were used for already removed directives. It should be used for deprecated features with known term of removal. For removed features "versionchanged" is more appropriate.

2. Text for removed parameters was too verbose. "Removed the XXX parameter" would be enough.

3. "versionadded" directives were used for new parameters. "versionchanged" directive is more appropriate. It is a date of the change in existing function, not the date of adding the function itself.

4. Some directives were written not in order of increasing version number.

5. In some places parameters were marked up as ``name``. *name* is commonly used for parameters.
History
Date User Action Args
2022-02-17 12:54:16serhiy.storchakasetrecipients: + serhiy.storchaka, asvetlov, docs@python, yselivanov, kj
2022-02-17 12:54:16serhiy.storchakasetmessageid: <1645102456.61.0.455925245808.issue46777@roundup.psfhosted.org>
2022-02-17 12:54:16serhiy.storchakalinkissue46777 messages
2022-02-17 12:54:16serhiy.storchakacreate