1"""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
16