Does Python have decorators in the standard library?

前端 未结 4 644
太阳男子
太阳男子 2021-02-18 17:38

Apart from @staticmethod and @classmethod? Most languages have some basic libraries making use of most of the language features.

It seems that

4条回答
  •  遥遥无期
    2021-02-18 17:50

    • property

    • functools.total_ordering

    • functools.lru_cache

    • functools.wraps

    • contextlib.contextmanager

      ...

提交回复
热议问题