~pythonregexp2.7/python/issue2636-01

« back to all changes in this revision

Viewing changes to Lib/test/pydoc_mod.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:37:21 UTC
  • mfrom: (39022.1.14 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609143721-bj0g1mwta28038da
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
def nodoc_func():
27
27
    pass
28
 
"""This is a test module for test_pydoc"""
29
 
 
30
 
__author__ = "Benjamin Peterson"
31
 
__credits__ = "Nobody"
32
 
__version__ = "1.2.3.4"
33
 
 
34
 
 
35
 
class A:
36
 
    """Hello and goodbye"""
37
 
    def __init__():
38
 
        """Wow, I have no function!"""
39
 
        pass
40
 
 
41
 
class B(object):
42
 
    NO_MEANING = "eggs"
43
 
    pass
44
 
 
45
 
def doc_func():
46
 
    """
47
 
    This function solves all of the world's problems:
48
 
    hunger
49
 
    lack of Python
50
 
    war
51
 
    """
52
 
 
53
 
def nodoc_func():
54
 
    pass