gh-108303: Move all doctest related files and tests to Lib/test/test_doctest/ (#112109)

Co-authored-by: Brett Cannon <brett@python.org>
This commit is contained in:
Nikita Sobolev 2024-01-18 18:58:11 +03:00 committed by GitHub
parent 2ff072f21f
commit 9c93350f58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 153 additions and 117 deletions

View file

@ -0,0 +1,12 @@
# This is a sample module used for testing doctest.
#
# This module is for testing how doctest handles a module with no
# docstrings.
class Foo(object):
# A class with no docstring.
def __init__(self):
pass