Staging
v0.8.1
https://github.com/python/cpython
Revision 439c93d51f45c50541fc755b597725168ecd939a authored by Łukasz Langa on 11 August 2020, 17:14:36 UTC, committed by Łukasz Langa on 11 August 2020, 18:58:17 UTC
1 parent 5de00f6
Raw File
Tip revision: 439c93d51f45c50541fc755b597725168ecd939a authored by Łukasz Langa on 11 August 2020, 17:14:36 UTC
Python 3.9.0rc1
Tip revision: 439c93d
sample_doctest_no_docstrings.py
# 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
back to top