この機能を知っている人はあまりいませんが、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 を使用することです。しかし、カスタム属性はどうですか? それらを使用する正当な理由はありますか?