📜  烧瓶装饰器导致视图被命名为相同的东西 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:30.775000             🧑  作者: Mango

代码示例1
def exception_handler(func):
  def wrapper(*args, **kwargs):
  # Renaming the wrapper name to the function name:
  wrapper.__name__ = func.__name__
  return wrapper