Document required signature of before_first_request-decorated functions

This commit is contained in:
Chris Rebert 2015-02-05 12:45:59 -08:00
parent 6a2524634d
commit fe6bcffdad

View file

@ -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)