Py introspection - comments and __doc__
See http://docs.python.org/library/inspect.html
def test_function():
""" Explanation of this function """
print "Testing: %s .." % test_function.__doc__
test_create_job__single_format()
>> Testing: Explanation of this function ..
Comments