From a6617f44c0416c6877d930b312e1f64df08eca0e Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 31 May 2010 17:50:31 +0200 Subject: [PATCH] Documented _request_ctx_stack. This fixes #57 --- docs/api.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/api.rst b/docs/api.rst index 152c4cf7..0fb50551 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -290,3 +290,13 @@ Configuration .. autoclass:: Config :members: + +Useful Internals +---------------- + +.. data:: _request_ctx_stack + + The internal :class:`~werkzeug.LocalStack` that is used to implement + all the context local objects used in Flask. This is a documented + instance and can be used by extensions and application code but the + use is discouraged in general.