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: Duplicate deprecation warnings in docs for asyncio
Type: Stage: resolved
Components: asyncio, Documentation Versions: Python 3.11, Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Fix incorrect use of directives in asyncio documentation
View: 46777
Assigned To: docs@python Nosy List: asvetlov, docs@python, gvanrossum, kumaraditya, yselivanov
Priority: normal Keywords:

Created on 2022-02-06 18:43 by gvanrossum, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (4)
msg412653 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2022-02-06 18:43
I found that several asyncio function descriptions, e.g. gather, have a duplicate deprecation notice like this:

   .. deprecated-removed:: 3.8 3.10
      The ``loop`` parameter.  This function has been implicitly getting the
      current running loop since 3.7.  See
      :ref:`What's New in 3.10's Removed section <whatsnew310-removed>`
      for more information.

For gather, that notice appears both before and after the example. For a few others, too.
msg412681 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2022-02-06 23:10
Kumar are you interested in fixing this?
msg414104 - (view) Author: Kumar Aditya (kumaraditya) * (Python triager) Date: 2022-02-26 13:39
This was fixed in https://github.com/python/cpython/pull/31388, so this can be closed now.
msg414110 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2022-02-26 16:12
Thanks! Marking as duplicate.
History
Date User Action Args
2022-04-11 14:59:55adminsetgithub: 90819
2022-02-26 16:12:51gvanrossumsetstatus: open -> closed
superseder: Fix incorrect use of directives in asyncio documentation
messages: + msg414110

resolution: duplicate
stage: resolved
2022-02-26 13:39:28kumaradityasetnosy: + kumaraditya
messages: + msg414104
2022-02-11 22:50:53gvanrossumsettitle: Duplicat deprecation warnings in docs for asyncio -> Duplicate deprecation warnings in docs for asyncio
2022-02-06 23:10:42gvanrossumsetmessages: + msg412681
2022-02-06 18:43:45gvanrossumcreate