[Python-checkins] bpo-45792: Fix contextvar.Token's intersphinx FQN (GH-29533)

asvetlov webhook-mailer at python.org
Fri Nov 12 04:48:06 EST 2021


https://github.com/python/cpython/commit/e501d70b347c5093018d12482c30a7a98aab86d0
commit: e501d70b347c5093018d12482c30a7a98aab86d0
branch: main
author: Hynek Schlawack <hs at ox.cx>
committer: asvetlov <andrew.svetlov at gmail.com>
date: 2021-11-12T11:47:55+02:00
summary:

bpo-45792: Fix contextvar.Token's intersphinx FQN (GH-29533)

Since `.. module:: contextvars` sets the module using `.. class:: contextvars.Token`, intersphinx records it as `contextvars.contextvars.Token`.

files:
M Doc/library/contextvars.rst

diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst
index 14ac47f4c9eb1..be1dd0c9eb57e 100644
--- a/Doc/library/contextvars.rst
+++ b/Doc/library/contextvars.rst
@@ -94,7 +94,7 @@ Context Variables
           # var.get() would raise a LookupError.
 
 
-.. class:: contextvars.Token
+.. class:: Token
 
    *Token* objects are returned by the :meth:`ContextVar.set` method.
    They can be passed to the :meth:`ContextVar.reset` method to revert



More information about the Python-checkins mailing list