1 """This is a sample module used for testing doctest.
2
3 This module is for testing how doctest handles a module with docstrings
4 but no doctest examples.
5
6 """
7
8
9 class Foo(object):
10 """A docstring with no doctest examples.
11
12 """
13
14 def __init__(self):
15 pass
16