Staging
v0.8.1
https://github.com/python/cpython
Revision 278519500f6c551cc2a8035f11a81d21fae7424c authored by Benjamin Peterson on 10 November 2013, 07:36:30 UTC, committed by Benjamin Peterson on 10 November 2013, 07:36:30 UTC
1 parent 1185273
Raw File
Tip revision: 278519500f6c551cc2a8035f11a81d21fae7424c authored by Benjamin Peterson on 10 November 2013, 07:36:30 UTC
2.7.6 final
Tip revision: 2785195
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