mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
[3.13] Fix index entry and anchor for module.__test__ (GH-136674) (GH-136689)
It was "doctest.module attribute". Now it is "module attribute".
(cherry picked from commit 7689407fa4
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
9c11745ede
commit
894d30c650
1 changed files with 4 additions and 0 deletions
|
@ -307,9 +307,13 @@ Which Docstrings Are Examined?
|
|||
The module docstring, and all function, class and method docstrings are
|
||||
searched. Objects imported into the module are not searched.
|
||||
|
||||
.. currentmodule:: None
|
||||
|
||||
.. attribute:: module.__test__
|
||||
:no-typesetting:
|
||||
|
||||
.. currentmodule:: doctest
|
||||
|
||||
In addition, there are cases when you want tests to be part of a module but not part
|
||||
of the help text, which requires that the tests not be included in the docstring.
|
||||
Doctest looks for a module-level variable called ``__test__`` and uses it to locate other
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue