Files
Ekaterina Tuzova d7281a83a9 implemented pylint W0601
Inspection is used when a variable is defined through the "global" statement but the variable is not defined in the module scope.
2013-03-22 15:44:16 +04:00

6 lines
129 B
Python

__author__ = 'ktisha'
def foo():
pass
<weak_warning descr="Function 'foo' doesn't return anything">b = foo()</weak_warning>