Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

flask decorator causes views to be named the same thing

def exception_handler(func):
  def wrapper(*args, **kwargs):
  # Renaming the wrapper name to the function name:
  wrapper.__name__ = func.__name__
  return wrapper
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #flask #decorator #views #named
ADD COMMENT
Topic
Name
4+4 =