#14649: add sample files omitted from previous checkin.

This commit is contained in:
R David Murray 2012-09-10 11:20:47 -04:00
parent f6cdd35bc7
commit 4709ac14ff
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# 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

View File

@ -0,0 +1,15 @@
"""This is a sample module used for testing doctest.
This module is for testing how doctest handles a module with docstrings
but no doctest examples.
"""
class Foo(object):
"""A docstring with no doctest examples.
"""
def __init__(self):
pass