diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2022-05-08 13:17:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 13:17:23 (GMT) |
commit | 5639ea1ef9ba8452f81b61ad73152bd1bf1fd3a6 (patch) | |
tree | cf961c16ca67d97b1158617ed1b7f04fdd6449ea /Doc/library/doctest.rst | |
parent | bc098cfdb756f207d8fa84793e8ad91a2f263efb (diff) | |
download | cpython-5639ea1ef9ba8452f81b61ad73152bd1bf1fd3a6.zip cpython-5639ea1ef9ba8452f81b61ad73152bd1bf1fd3a6.tar.gz cpython-5639ea1ef9ba8452f81b61ad73152bd1bf1fd3a6.tar.bz2 |
gh-92417: `doctest` docs: remove references to Python <3.6 (GH-92420)
Diffstat (limited to 'Doc/library/doctest.rst')
-rw-r--r-- | Doc/library/doctest.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index 0bbb640..3032879 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -288,10 +288,6 @@ strings are treated as if they were docstrings. In output, a key ``K`` in Any classes found are recursively searched similarly, to test docstrings in their contained methods and nested classes. -.. impl-detail:: - Prior to version 3.4, extension modules written in C were not fully - searched by doctest. - .. _doctest-finding-examples: @@ -785,11 +781,6 @@ instead. Another is to do :: >>> d ['Harry', 'Hermione'] -.. note:: - - Before Python 3.6, when printing a dict, Python did not guarantee that - the key-value pairs was printed in any particular order. - There are others, but you get the idea. Another bad idea is to print things that embed an object address, like :: |