blob: 7daa57231c8426a1f4eb67b77e1f1c3b1e6d740f [file] [log] [blame]
R David Murray5abd76a2012-09-10 10:15:58 -04001"""This is a sample module used for testing doctest.
2
3This module is for testing how doctest handles a module with docstrings
4but no doctest examples.
5
6"""
7
8
9class Foo(object):
10 """A docstring with no doctest examples.
11
12 """
13
14 def __init__(self):
15 pass