LoginSignup
1
1

More than 5 years have passed since last update.

Pythonでのデコレータはメソッド上に毎回書く

Posted at

当たり前になればなんでもないですが、Pythonのデコレータは馴れ親しみがなく、少し時間がかかったので、記録します。
@classmethodなどのデコレータ文言はデコレートしたいメソッド全ての上にデコレータ記載が必要です。
PrivatetとかPublicとかの様に一度書くとスコープが発生するかと思いましたが、そうではありませんでした(笑)
情けない。

sample.py
    @classmethod
    def Method1(cls):
        return True
    @classmethod
    def Method2(cls):
        return False

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1