私の目標は、1 行のメソッド/関数を特定することです。たとえば、scenario.py には、1 行のコードしか記述されていない 2 つの関数があります。私の仕事は、私が大規模なアプリケーションを持っていることです。そのアプリケーション内のすべての python ファイルを解析し、1 行の関数を識別します。
#Scenario.py
line 1---> class parent:
line 2---> def father(self):
line 3---> print "dad"
line 4---> def mother(self):
line 5---> print "mom"
Sample Output:
One liner function at : line=2, line =4