多くの人がこの機能を認識していませんが、Pythonの関数(およびメソッド)は属性を持つことができます。見よ:
>>> def foo(x):
... pass
...
>>> foo.score = 10
>>> dir(foo)
['__call__', '__class__', '__delattr__', '__dict__', '__doc__', '__get__', '__getattribute__', '__hash__', '__init__', '__module__', '__name__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__str__', 'func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name', 'score']
>>> foo.score
10
>>> foo.score += 1
>>> foo.score
11
Pythonでこの機能を使用および悪用する可能性は何ですか?私が知っている1つの良い使用法は、構文規則をメソッドに関連付けるためのPLYのdocstringの使用法です。しかし、カスタム属性はどうですか?それらを使用する正当な理由はありますか?