Staging
v0.8.1
Revision 4ed35fc4f31ebbdb25ba5e1291de77f4095c33d0 authored by Martin Panter on 10 October 2015, 10:52:35 UTC, committed by Martin Panter on 10 October 2015, 10:52:35 UTC
1 parent dab305e
Raw File
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