A I couldn't find anything concerning in the PEP 8. I'm interested in your thoughts about the most pythonic syntax of function which have no return?
Are there any reason to prevent functions without a return line(example 3)?
Example 1:
def foo():
print 'foo'
return None
Example 2:
def foo():
print 'foo'
pass
Example 3:
def foo():
print 'foo'

passstatement here. From the doc: "It can be used when a statement is required syntactically but the program requires no action." – Nicolas Nov 9 '12 at 11:24foo()constitutes may be used in a place that requires its return value. – TC1 Nov 9 '12 at 11:28