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 cbde895669
commit 4692b32f6c

View file

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