I created two modules, one with
def _func():
print "hi"
and another
def func():
print "hi"
When I use the help function on the module including the first function, the help module doesn't display this function. As opposed the second example where this function shows in the help output. Is there any functional difference aside from the use of the help function?