Staging
v0.8.1
Revision 0c0714f954bd78fdeae30ae284abc381bd850393 authored by Mark Dickinson on 29 September 2010, 18:41:54 UTC, committed by Mark Dickinson on 29 September 2010, 18:41:54 UTC
1 parent 71e91a3
Raw File
pydoc_mod.py
"""This is a test module for test_pydoc"""

__author__ = "Benjamin Peterson"
__credits__ = "Nobody"
__version__ = "1.2.3.4"


class A:
    """Hello and goodbye"""
    def __init__():
        """Wow, I have no function!"""
        pass

class B(object):
    NO_MEANING = "eggs"
    pass

def doc_func():
    """
    This function solves all of the world's problems:
    hunger
    lack of Python
    war
    """

def nodoc_func():
    pass
back to top