Browse Source

Document required signature of before_first_request-decorated functions

pull/1338/head
Chris Rebert 10 years ago
parent
commit
fe6bcffdad
  1. 3
      flask/app.py

3
flask/app.py

@ -1258,6 +1258,9 @@ class Flask(_PackageBoundObject):
"""Registers a function to be run before the first request to this """Registers a function to be run before the first request to this
instance of the application. instance of the application.
The function will be called without any arguments and its return
value is ignored.
.. versionadded:: 0.8 .. versionadded:: 0.8
""" """
self.before_first_request_funcs.append(f) self.before_first_request_funcs.append(f)

Loading…
Cancel
Save