From da431f7d93b61d332204a17b5a11a4fa45a0cda9 Mon Sep 17 00:00:00 2001 From: harshita Date: Sat, 3 Jan 2026 22:12:37 +0530 Subject: [PATCH] Update README --- docs/lifecycle.rst | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/lifecycle.rst b/docs/lifecycle.rst index 37d45cd9..ce6c01b0 100644 --- a/docs/lifecycle.rst +++ b/docs/lifecycle.rst @@ -158,14 +158,3 @@ parts that you can use to customize its behavior. and :data:`.session` are no longer available. #. The :data:`.appcontext_popped` signal is sent. -When executing a CLI command or plain app context without request data, the same -order of steps is followed, omitting the steps that refer to the request. - -A :class:`Blueprint` can add handlers for these events that are specific to the -blueprint. The handlers for a blueprint will run if the blueprint -owns the route that matches the request. - -There are even more decorators and customization points than this, but that aren't part -of every request lifecycle. They're more specific to certain things you might use during -a request, such as templates, building URLs, or handling JSON data. See the rest of this -documentation, as well as the :doc:`api` to explore further.