Staging
v0.8.1
Revision d01ae1b22330992eadc7b2a0842ead544f7e507d authored by Miss Islington (bot) on 03 February 2020, 17:17:17 UTC, committed by GitHub on 03 February 2020, 17:17:17 UTC
(cherry picked from commit 5807efd4c396d5718325e21f5a14e324a77ff77c)

Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
1 parent db2f311
Raw File
sample_doctest_no_doctests.py
"""This is a sample module used for testing doctest.

This module is for testing how doctest handles a module with docstrings
but no doctest examples.

"""


class Foo(object):
    """A docstring with no doctest examples.

    """

    def __init__(self):
        pass
back to top