
    hDV                   x   S SK Jr  S SKrS SKrS SKrS SKrS SKrS SKJ	r
  S SKJr  S SKJr  S SKJr  S SKJr  S SKJr  S SKrS S	KJr  S S
KJr  S SKJr  S SKJr  S SKJr  S SKJr  S SKJr  S SK J!r!  S SK J"r"  S SK J#r#  S SK J$r$  S SK J%r%  S SK J&r&  S SK'J(r(  S SK)J*r*  S SK)J+r,  S SK-J.r/  SSK0J1r1  SSK0Jr2  SSK3J4r4  SSK3J5r5  SSK6J7r7  SS K6J8r8  SS!K6J9r9  SS"K:J;r;  SS#K:J<r<  SS$K:J=r=  SS%K:J>r>  SS&K:J?r?  SS'K:J@r@  SS(KAJBrB  SS)KAJCrC  SS*KAJDrD  SS+KAJErE  SS,KFJGrG  SS-KFJHrH  SS.KJIrI  SS/KJJKrK  SS0KJJLrL  SS1KJJMrM  SS2KJJNrN  SS3KJJOrO  SS4KPJQrQ  SS5KPJRrR  SS6KSJTrT  SS7KSJUrU  SS8KSJVrV  SS9KSJWrW  SS:KSJXrX  SS;KYJZrZ  SS<KYJ[r[  SS=K\J]r]  SSK\J.r.  \R                  (       a  SS>K_J`r`  SS?KaJbrb  SS@KaJcrc  \R                  " SA\2R                  SB9rf\R                  " SC\2R                  SB9rh\R                  " SD\2R                  SB9rj\R                  " SE\2R                  SB9rl\R                  " SF\2R                  SB9rnSJSG jro " SH SI\N5      rpg)K    )annotationsN)Iterator)	timedelta)iscoroutinefunction)chain)TracebackType)quote)Headers)ImmutableDict)Aborter)
BadRequest)BadRequestKeyError)HTTPException)InternalServerError)
BuildError)Map)
MapAdapter)RequestRedirect)RoutingException)Rule)is_running_from_reloader)cached_property)redirect)Response   )cli)typing)Config)ConfigAttribute)_AppCtxGlobals
AppContextRequestContext)_cv_app)_cv_request)g)request)request_ctx)session)_split_blueprint_path)get_debug_flag)get_flashed_messages)get_load_dotenv)DefaultJSONProvider)JSONProvidercreate_logger)_endpoint_from_view_func)	_sentinel)find_package)Scaffold)setupmethod)SecureCookieSessionInterface)SessionInterface)appcontext_tearing_down)got_request_exception)request_finished)request_started)request_tearing_downDispatchingJinjaLoader)Environment)Request)	BlueprintFlaskClientFlaskCliRunnerT_shell_context_processor)bound
T_teardownT_template_filterT_template_globalT_template_testc                H    U b  [        U [        5      (       a  U $ [        U S9$ )N)seconds)
isinstancer   )values    ^C:\Users\ROHAN GUPTA\OneDrive\Desktop\mathbuddy-assessment\venv\Lib\site-packages\flask/app.py_make_timedeltarS   U   s#    }
5)44U##    c            
        ^  \ rS rSr% Sr\r\r\	r
\r\r\r\" S5      r\" S5      r\" S\S9r\rS\S'    0 rS	\S
'   \" 0 SS_SS_SS_SS_S\" SS9_SS_SS_SS_SS_SS_SS_SS_SS_SS_SS_SS_SS_SSSS SS!S".E5      r\r\r Sr!S#\S$'   Sr"S%\S&'   \#" 5       r$S'\S('            Sg                   ShU 4S) jjjr%SiS* jr&\'SjS+ j5       r(\'SkS, j5       r)\'SlS- j5       r*\+SmS. j5       r,SnSoS/ jjr-SpS0 jr.SjS1 jr/SqSrS2 jjr0SlS3 jr1SsS4 jr2StS5 jr3SuS6 jr4SvS7 jr5\+SmS8 j5       r6\6Rn                  SwS9 j5       r6    Sx           SyS: jjr8SzS{S; jjr9S|S< jr:\;S}S= j5       r<S~S> jr=\;   S           SS? jj5       r>\; S   SS@ jj5       r?\; S     SSA jj5       r@\; S   SSB jj5       rA\; S     SSC jj5       rB\; S   SSD jj5       rC\; S     SSE jj5       rD\;SSF j5       rE\;    SSG j5       rFSSH jrG    SSI jrHSSJ jrI    SSK jrJSSL jrK    SSM jrLSSN jrMSSO jrNSSP jrO Sn     SSQ jjrPSSR jrQSSS jrRSST jrS    SSU jrTSSSSSV.             SSW jjrUSSSX jjrVSSY jrWSSZ jrXSS[ jrY        SS\ jrZSS] jr[SS^ jr\\]4   SS_ jjr^\]4   SS` jjr_SSa jr`SSb jraSSc jrbSSd jrcSSe jrdSfreU =rf$ )Flask\   a  The flask object implements a WSGI application and acts as the central
object.  It is passed the name of the module or package of the
application.  Once it is created it will act as a central registry for
the view functions, the URL rules, template configuration and much more.

The name of the package is used to resolve resources from inside the
package or the folder the module is contained in depending on if the
package parameter resolves to an actual python package (a folder with
an :file:`__init__.py` file inside) or a standard module (just a ``.py`` file).

For more information about resource loading, see :func:`open_resource`.

Usually you create a :class:`Flask` instance in your main module or
in the :file:`__init__.py` file of your package like this::

    from flask import Flask
    app = Flask(__name__)

.. admonition:: About the First Parameter

    The idea of the first parameter is to give Flask an idea of what
    belongs to your application.  This name is used to find resources
    on the filesystem, can be used by extensions to improve debugging
    information and a lot more.

    So it's important what you provide there.  If you are using a single
    module, `__name__` is always the correct value.  If you however are
    using a package, it's usually recommended to hardcode the name of
    your package there.

    For example if your application is defined in :file:`yourapplication/app.py`
    you should create it with one of the two versions below::

        app = Flask('yourapplication')
        app = Flask(__name__.split('.')[0])

    Why is that?  The application will work even with `__name__`, thanks
    to how resources are looked up.  However it will make debugging more
    painful.  Certain extensions can make assumptions based on the
    import name of your application.  For example the Flask-SQLAlchemy
    extension will look for the code in your application that triggered
    an SQL query in debug mode.  If the import name is not properly set
    up, that debugging information is lost.  (For example it would only
    pick up SQL queries in `yourapplication.app` and not
    `yourapplication.views.frontend`)

.. versionadded:: 0.7
   The `static_url_path`, `static_folder`, and `template_folder`
   parameters were added.

.. versionadded:: 0.8
   The `instance_path` and `instance_relative_config` parameters were
   added.

.. versionadded:: 0.11
   The `root_path` parameter was added.

.. versionadded:: 1.0
   The ``host_matching`` and ``static_host`` parameters were added.

.. versionadded:: 1.0
   The ``subdomain_matching`` parameter was added. Subdomain
   matching needs to be enabled manually now. Setting
   :data:`SERVER_NAME` does not implicitly enable it.

:param import_name: the name of the application package
:param static_url_path: can be used to specify a different path for the
                        static files on the web.  Defaults to the name
                        of the `static_folder` folder.
:param static_folder: The folder with static files that is served at
    ``static_url_path``. Relative to the application ``root_path``
    or an absolute path. Defaults to ``'static'``.
:param static_host: the host to use when adding the static route.
    Defaults to None. Required when using ``host_matching=True``
    with a ``static_folder`` configured.
:param host_matching: set ``url_map.host_matching`` attribute.
    Defaults to False.
:param subdomain_matching: consider the subdomain relative to
    :data:`SERVER_NAME` when matching routes. Defaults to False.
:param template_folder: the folder that contains the templates that should
                        be used by the application.  Defaults to
                        ``'templates'`` folder in the root path of the
                        application.
:param instance_path: An alternative instance path for the application.
                      By default the folder ``'instance'`` next to the
                      package or module is assumed to be the instance
                      path.
:param instance_relative_config: if set to ``True`` relative filenames
                                 for loading the config are assumed to
                                 be relative to the instance path instead
                                 of the application root.
:param root_path: The path to the root of the application files.
    This should only be set manually when it can't be detected
    automatically, such as for namespace packages.
TESTING
SECRET_KEYPERMANENT_SESSION_LIFETIME)get_converterztype[JSONProvider]json_provider_classdictjinja_optionsDEBUGNFPROPAGATE_EXCEPTIONS   )daysUSE_X_SENDFILESERVER_NAMEAPPLICATION_ROOT/SESSION_COOKIE_NAMEr*   SESSION_COOKIE_DOMAINSESSION_COOKIE_PATHSESSION_COOKIE_HTTPONLYTSESSION_COOKIE_SECURESESSION_COOKIE_SAMESITESESSION_REFRESH_EACH_REQUESTMAX_CONTENT_LENGTHSEND_FILE_MAX_AGE_DEFAULThttpi  )TRAP_BAD_REQUEST_ERRORSTRAP_HTTP_EXCEPTIONSEXPLAIN_TEMPLATE_LOADINGPREFERRED_URL_SCHEMETEMPLATES_AUTO_RELOADMAX_COOKIE_SIZEztype[FlaskClient] | Nonetest_client_classztype[FlaskCliRunner] | Nonetest_cli_runner_classr9   session_interfacec                  >^ [         TU ]  UUUUU
S9  Uc  U R                  5       nO/[        R                  R                  U5      (       d  [        S5      eXl        U R                  U	5      U l	        U R                  5       U l        U R                  U 5      U l         / U l        / U l        / U l        0 U l        0 U l        U R'                  5       U l        XPR(                  l        X`l        SU l        U R0                  (       aO  [3        U5      U:X  d   S5       e[4        R6                  " U 5      mU R9                  U R:                   S3SUU4S jS9  U R<                  U R>                  l        g )	N)import_namestatic_folderstatic_url_pathtemplate_folder	root_pathzWIf an instance path is provided it must be absolute. A relative path was given instead.Fz-Invalid static_host/host_matching combinationz/<path:filename>staticc                 2   > T" 5       R                   " S0 U D6$ )N )send_static_file)kwself_refs    rR   <lambda> Flask.__init__.<locals>.<lambda>  s    xz'B'B'HR'HrT   )endpointhost	view_func) super__init__auto_find_instance_pathospathisabs
ValueErrorinstance_pathmake_configconfigmake_aborteraborterr\   jsonurl_build_error_handlersteardown_appcontext_funcsshell_context_processors
blueprints
extensionsurl_map_classurl_maphost_matchingsubdomain_matching_got_first_requesthas_static_folderboolweakrefrefadd_url_ruler}   namer   )selfr{   r}   r|   static_hostr   r   r~   r   instance_relative_configr   r   	__class__s              @rR   r   Flask.__init__b  s    	#'++ 	 	
   88:M}--6  +
 &&'?@ ((*"&":":4"@		2  	% EG& QS% 13 !#" ))+%2""4 #( !![!]2?>?2 {{4(H''((89! H	   		rT   c                D    U R                   (       a  [        SU S35      eg )NzThe setup method 'z' can no longer be called on the application. It has already handled its first request, any changes will not be applied consistently.
Make sure all imports, decorators, functions, etc. needed to set up the application are done before running it.)r   AssertionError)r   f_names     rR   _check_setup_finishedFlask._check_setup_finished  s.    "" $VH -   #rT   c                    U R                   S:X  aa  [        [        R                  S   SS5      nUc  g[        R
                  R                  [        R
                  R                  U5      5      S   $ U R                   $ )a/  The name of the application.  This is usually the import name
with the difference that it's guessed from the run file if the
import name is main.  This name is used as a display name when
Flask needs the name of the application.  It can be set and overridden
to change the value.

.. versionadded:: 0.8
__main____file__Nr   )r{   getattrsysmodulesr   r   splitextbasename)r   fns     rR   r   
Flask.name	  sf     z)Z0*dCBz!77##BGG$4$4R$89!<<rT   c                    [        U 5      $ )a3  A standard Python :class:`~logging.Logger` for the app, with
the same name as :attr:`name`.

In debug mode, the logger's :attr:`~logging.Logger.level` will
be set to :data:`~logging.DEBUG`.

If there are no handlers configured, a default handler will be
added. See :doc:`/logging` for more information.

.. versionchanged:: 1.1.0
    The logger takes the same name as :attr:`name` rather than
    hard-coding ``"flask.app"``.

.. versionchanged:: 1.0.0
    Behavior was simplified. The logger is always named
    ``"flask.app"``. The level is only set during configuration,
    it doesn't check ``app.debug`` each time. Only one format is
    used, not different ones depending on ``app.debug``. No
    handlers are removed, and a handler is only added if no
    handlers are already configured.

.. versionadded:: 0.3
r1   r   s    rR   loggerFlask.logger  s    2 T""rT   c                "    U R                  5       $ )zThe Jinja environment used to load templates.

The environment is created the first time this property is
accessed. Changing :attr:`jinja_options` after that will have no
effect.
)create_jinja_environmentr   s    rR   	jinja_envFlask.jinja_env5  s     ,,..rT   c                L    SSK nUR                  S[        SS9  U R                  $ )zThis attribute is set to ``True`` if the application started
handling the first request.

.. deprecated:: 2.3
    Will be removed in Flask 2.4.

.. versionadded:: 0.8
r   NzC'got_first_request' is deprecated and will be removed in Flask 2.4.   )
stacklevel)warningswarnDeprecationWarningr   )r   r   s     rR   got_first_requestFlask.got_first_request?  s/     	Q 	 	

 &&&rT   c                    U R                   nU(       a  U R                  n[        U R                  5      n[	        5       US'   U R                  X#5      $ )a4  Used to create the config attribute by the Flask constructor.
The `instance_relative` parameter is passed in from the constructor
of Flask (there named `instance_relative_config`) and indicates if
the config should be relative to the instance path or the root path
of the application.

.. versionadded:: 0.8
r_   )r   r   r]   default_configr,   config_class)r   instance_relativer   defaultss       rR   r   Flask.make_configR  sI     NN	**I++,*,  55rT   c                "    U R                  5       $ )a&  Create the object to assign to :attr:`aborter`. That object
is called by :func:`flask.abort` to raise HTTP errors, and can
be called directly as well.

By default, this creates an instance of :attr:`aborter_class`,
which defaults to :class:`werkzeug.exceptions.Aborter`.

.. versionadded:: 2.2
)aborter_classr   s    rR   r   Flask.make_aborterb  s     !!##rT   c                    [        U R                  5      u  pUc   [        R                  R	                  US5      $ [        R                  R	                  USU R
                   S35      $ )zTries to locate the instance path if it was not provided to the
constructor of the application class.  It will basically calculate
the path to a folder named ``instance`` next to your main file or
the package.

.. versionadded:: 0.8
instancevarz	-instance)r5   r{   r   r   joinr   )r   prefixpackage_paths      rR   r   Flask.auto_find_instance_pathn  sS      ,D,<,<=>77<<j99ww||FEdii[	+BCCrT   c                j    [        [        R                  R                  U R                  U5      U5      $ )ar  Opens a resource from the application's instance folder
(:attr:`instance_path`).  Otherwise works like
:meth:`open_resource`.  Instance resources can also be opened for
writing.

:param resource: the name of the resource.  To access resources within
                 subfolders use forward slashes as separator.
:param mode: resource file opening mode, default is 'rb'.
)openr   r   r   r   )r   resourcemodes      rR   open_instance_resourceFlask.open_instance_resource{  s&     BGGLL!3!3X>EErT   c           	        [        U R                  5      nSU;  a  U R                  US'   SU;  a"  U R                  S   nUc  U R                  nX!S'   U R
                  " U 40 UD6nUR                  R                  U R                  [        U R                  [        [        [        S9  U R                  R                  UR                  S'   U$ )a  Create the Jinja environment based on :attr:`jinja_options`
and the various Jinja-related methods of the app. Changing
:attr:`jinja_options` after this will have no effect. Also adds
Flask-related globals and filters to the environment.

.. versionchanged:: 0.11
   ``Environment.auto_reload`` set in accordance with
   ``TEMPLATES_AUTO_RELOAD`` configuration option.

.. versionadded:: 0.5

autoescapeauto_reloadru   )url_forr-   r   r(   r*   r'   zjson.dumps_function)r]   r^   select_jinja_autoescaper   debugjinja_environmentglobalsupdater   r-   r(   r*   r'   r   dumpspolicies)r   optionsr   rvs       rR   r   Flask.create_jinja_environment  s     t))*w&$($@$@GL!'++&=>K""jj%0M"##D4G4


LL!5;;  	 
	
 .2YY__)*	rT   c                    [        U 5      $ )ah  Creates the loader for the Jinja2 environment.  Can be used to
override just the loader and keeping the rest unchanged.  It's
discouraged to override this function.  Instead one should override
the :meth:`jinja_loader` function instead.

The global loader dispatches between the loaders of the application
and the individual blueprints.

.. versionadded:: 0.7
r?   r   s    rR   create_global_jinja_loader Flask.create_global_jinja_loader  s     &d++rT   c                ,    Uc  gUR                  S5      $ )zReturns ``True`` if autoescaping should be active for the given
template name. If no template name is given, returns `True`.

.. versionchanged:: 2.2
    Autoescaping is now enabled by default for ``.svg`` files.

.. versionadded:: 0.5
T)z.htmlz.htmz.xmlz.xhtmlz.svg)endswith)r   filenames     rR   r   Flask.select_jinja_autoescape  s       !LMMrT   c                2   Sn[         (       a#  [        U[        [         R                  5      5      nUR	                  5       nU H@  nX@R
                  ;   d  M  U R
                  U    H  nUR                  U" 5       5        M     MB     UR                  U5        g)a  Update the template context with some commonly used variables.
This injects request, session, config and g into the template
context as well as everything template context processors want
to inject.  Note that the as of Flask 0.6, the original values
in the context will not be overridden if a context processor
decides to return a value with the same key.

:param context: the context as a dictionary that is updated in place
                to add extra variables.
NN)r(   r   reversedr   copytemplate_context_processorsr   )r   contextnamesorig_ctxr   funcs         rR   update_template_contextFlask.update_template_context  s|     )0 7%'*<*<!=>E <<>D777 <<TBDNN46* C 
 	x rT   c                j    U [         S.nU R                   H  nUR                  U" 5       5        M     U$ )zReturns the shell context for an interactive shell for this
application.  This runs all the registered shell context
processors.

.. versionadded:: 0.11
)appr'   )r'   r   r   )r   r   	processors      rR   make_shell_contextFlask.make_shell_context  s1     "66IIIik" 7	rT   c                     U R                   S   $ )ar  Whether debug mode is enabled. When using ``flask run`` to start the
development server, an interactive debugger will be shown for unhandled
exceptions, and the server will be reloaded when code changes. This maps to the
:data:`DEBUG` config key. It may not behave as expected if set late.

**Do not enable debug mode when deploying in production.**

Default: ``False``
r_   )r   r   s    rR   r   Flask.debug  s     {{7##rT   c                b    XR                   S'   U R                   S   c  XR                  l        g g )Nr_   ru   )r   r   r   )r   rQ   s     rR   r   r    s-    $G;;./7).NN& 8rT   c                   [         R                  R                  S5      S:X  a%  [        5       (       d  [        R
                  " SSS9  g[        U5      (       a8  [        R                  " 5         S[         R                  ;   a  [        5       U l
        Ub  [        U5      U l
        U R                  R                  S5      nS=pxU(       a  UR                  S	5      u  pynU(       d  U(       a  UnOS
nU(       d  US:X  a  [        U5      nOU(       a  [        U5      nOSnUR                  SU R                  5        UR                  SU R                  5        UR                  SS5        [        R                   " U R                  U R"                  5        SSKJn
   U
" [(        R*                  " [,        U5      X 40 UD6  SU l        g! SU l        f = f)a	  Runs the application on a local development server.

Do not use ``run()`` in a production setting. It is not intended to
meet security and performance requirements for a production server.
Instead, see :doc:`/deploying/index` for WSGI server recommendations.

If the :attr:`debug` flag is set the server will automatically reload
for code changes and show a debugger in case an exception happened.

If you want to run the application in debug mode, but disable the
code execution on the interactive debugger, you can pass
``use_evalex=False`` as parameter.  This will keep the debugger's
traceback screen active, but disable code execution.

It is not recommended to use this function for development with
automatic reloading as this is badly supported.  Instead you should
be using the :command:`flask` command line script's ``run`` support.

.. admonition:: Keep in Mind

   Flask will suppress any server error with a generic error page
   unless it is in debug mode.  As such to enable just the
   interactive debugger without the code reloading, you have to
   invoke :meth:`run` with ``debug=True`` and ``use_reloader=False``.
   Setting ``use_debugger`` to ``True`` without being in debug mode
   won't catch any exceptions because there won't be any to
   catch.

:param host: the hostname to listen on. Set this to ``'0.0.0.0'`` to
    have the server available externally as well. Defaults to
    ``'127.0.0.1'`` or the host in the ``SERVER_NAME`` config variable
    if present.
:param port: the port of the webserver. Defaults to ``5000`` or the
    port defined in the ``SERVER_NAME`` config variable if present.
:param debug: if given, enable or disable debug mode. See
    :attr:`debug`.
:param load_dotenv: Load the nearest :file:`.env` and :file:`.flaskenv`
    files to set environment variables. Will also change the working
    directory to the directory containing the first file found.
:param options: the options to be forwarded to the underlying Werkzeug
    server. See :func:`werkzeug.serving.run_simple` for more
    information.

.. versionchanged:: 1.0
    If installed, python-dotenv will be used to load environment
    variables from :file:`.env` and :file:`.flaskenv` files.

    The :envvar:`FLASK_DEBUG` environment variable will override :attr:`debug`.

    Threaded mode is enabled by default.

.. versionchanged:: 0.10
    The default port is now picked from the ``SERVER_NAME``
    variable.
FLASK_RUN_FROM_CLItruez * Ignoring a call to 'app.run()' that would block the current 'flask' CLI command.
   Only call 'app.run()' in an 'if __name__ == "__main__"' guard.red)fgNFLASK_DEBUGrd   :z	127.0.0.1r   i  use_reloaderuse_debuggerthreadedT)
run_simpleF)r   environgetr   clicksechor.   r   load_dotenvr,   r   r   r   	partitionint
setdefaultshow_server_bannerr   werkzeug.servingr  tcaststrr   )r   r   portr   r  r   server_namesn_hostsn_port_r  s              rR   run	Flask.run  si   B ::>>./69+--+  ;''OO 

*+-
 eDJkkoom4  "-"7"7"<G"419t9Dw<DD>4::6>4::6:t,tzz4995/	,qvvc4($@@
 ',D#eD#s   #G 	Gc                V    U R                   nUc  SSKJn  U" X R                  4SU0UD6$ )al  Creates a test client for this application.  For information
about unit testing head over to :doc:`/testing`.

Note that if you are testing for assertions or exceptions in your
application code, you must set ``app.testing = True`` in order for the
exceptions to propagate to the test client.  Otherwise, the exception
will be handled by the application (not visible to the test client) and
the only indication of an AssertionError or other exception will be a
500 status code response to the test client.  See the :attr:`testing`
attribute.  For example::

    app.testing = True
    client = app.test_client()

The test client can be used in a ``with`` block to defer the closing down
of the context until the end of the ``with`` block.  This is useful if
you want to access the context locals for testing::

    with app.test_client() as c:
        rv = c.get('/?vodka=42')
        assert request.args['vodka'] == '42'

Additionally, you may pass optional keyword arguments that will then
be passed to the application's :attr:`test_client_class` constructor.
For example::

    from flask.testing import FlaskClient

    class CustomClient(FlaskClient):
        def __init__(self, *args, **kwargs):
            self._authentication = kwargs.pop("authentication")
            super(CustomClient,self).__init__( *args, **kwargs)

    app.test_client_class = CustomClient
    client = app.test_client(authentication='Basic ....')

See :class:`~flask.testing.FlaskClient` for more information.

.. versionchanged:: 0.4
   added support for ``with`` block usage for the client.

.. versionadded:: 0.7
   The `use_cookies` parameter was added as well as the ability
   to override the client to be used by setting the
   :attr:`test_client_class` attribute.

.. versionchanged:: 0.11
   Added `**kwargs` to support passing additional keyword arguments to
   the constructor of :attr:`test_client_class`.
r   rD   use_cookies)rw   testingrE   response_class)r   r*  kwargsclss       rR   test_clientFlask.test_client  s>    f $$;3%%
3>
BH
 	
rT   c                >    U R                   nUc  SSKJn  U" U 40 UD6$ )zCreate a CLI runner for testing CLI commands.
See :ref:`testing-cli`.

Returns an instance of :attr:`test_cli_runner_class`, by default
:class:`~flask.testing.FlaskCliRunner`. The Flask app object is
passed as the first argument.

.. versionadded:: 1.0
r   rF   )rx   r+  rG   )r   r-  r.  s      rR   test_cli_runnerFlask.test_cli_runner  s'     ((;64"6""rT   c                &    UR                  X5        g)a  Register a :class:`~flask.Blueprint` on the application. Keyword
arguments passed to this method will override the defaults set on the
blueprint.

Calls the blueprint's :meth:`~flask.Blueprint.register` method after
recording the blueprint in the application's :attr:`blueprints`.

:param blueprint: The blueprint to register.
:param url_prefix: Blueprint routes will be prefixed with this.
:param subdomain: Blueprint routes will match on this subdomain.
:param url_defaults: Blueprint routes will use these default values for
    view arguments.
:param options: Additional keyword arguments are passed to
    :class:`~flask.blueprints.BlueprintSetupState`. They can be
    accessed in :meth:`~flask.Blueprint.record` callbacks.

.. versionchanged:: 2.0.1
    The ``name`` option can be used to change the (pre-dotted)
    name the blueprint is registered with. This allows the same
    blueprint to be registered multiple times with unique names
    for ``url_for``.

.. versionadded:: 0.7
N)register)r   	blueprintr   s      rR   register_blueprintFlask.register_blueprint  s    4 	4)rT   c                6    U R                   R                  5       $ )zXIterates over all blueprints by the order they were registered.

.. versionadded:: 0.11
)r   valuesr   s    rR   iter_blueprintsFlask.iter_blueprints  s    
 %%''rT   c                   Uc  [        U5      nX%S'   UR                  SS 5      nUc  [        USS 5      =(       d    Sn[        U[        5      (       a  [        S5      eU Vs1 s H  owR                  5       iM     nn[        [        USS5      5      nUc  [        USS 5      nUc  SU;  a  S	nUR                  S5        OS
nXh-  nU R                  " U4SU0UD6nXAl
        U R                  R                  U5        Ub@  U R                  R                  U5      n	U	b  X:w  a  [        SU 35      eX0R                  U'   g g s  snf )Nr   methods)GETzYAllowed methods must be a list of strings, for example: @app.route(..., methods=["POST"])required_methodsr   provide_automatic_optionsOPTIONSTFzDView function mapping is overwriting an existing endpoint function: )r3   popr   rP   r!  	TypeErroruppersetaddurl_rule_classrA  r   view_functionsr  r   )
r   ruler   r   rA  r   r>  itemr@  old_funcs
             rR   r   Flask.add_url_rule  st    /	:H&
++i.
 ?iD9EXGgs##>  -44GD::<G4 wy2DbIJ %,(/6)% %,',0) $$Y/,1) 	#""4DDGD)B& **..x8H#(=$++3*6  -6) !5 5s   "E c                   ^ ^ SUU 4S jjnU$ )a?  A decorator that is used to register custom template filter.
You can specify a name for the filter, otherwise the function
name will be used. Example::

  @app.template_filter()
  def reverse(s):
      return s[::-1]

:param name: the optional name of the filter, otherwise the
             function name will be used.
c                (   > TR                  U TS9  U $ N)r   )add_template_filterfr   r   s    rR   	decorator(Flask.template_filter.<locals>.decorator9      $$QT$2HrT   )rS  rK   returnrK   r   r   r   rT  s   `` rR   template_filterFlask.template_filter)  s     	 	 rT   c                Z    XR                   R                  U=(       d    UR                  '   g)zRegister a custom template filter.  Works exactly like the
:meth:`template_filter` decorator.

:param name: the optional name of the filter, otherwise the
             function name will be used.
N)r   filters__name__r   rS  r   s      rR   rQ  Flask.add_template_filter?  s     67t1qzz2rT   c                   ^ ^ SUU 4S jjnU$ )a  A decorator that is used to register custom template test.
You can specify a name for the test, otherwise the function
name will be used. Example::

  @app.template_test()
  def is_prime(n):
      if n == 2:
          return True
      for i in range(2, int(math.ceil(math.sqrt(n))) + 1):
          if n % i == 0:
              return False
      return True

.. versionadded:: 0.10

:param name: the optional name of the test, otherwise the
             function name will be used.
c                (   > TR                  U TS9  U $ rP  )add_template_testrR  s    rR   rT  &Flask.template_test.<locals>.decoratorb  s    ""14"0HrT   )rS  rM   rW  rM   r   rX  s   `` rR   template_testFlask.template_testK  s    .	 	 rT   c                Z    XR                   R                  U=(       d    UR                  '   g)zRegister a custom template test.  Works exactly like the
:meth:`template_test` decorator.

.. versionadded:: 0.10

:param name: the optional name of the test, otherwise the
             function name will be used.
N)r   testsr]  r^  s      rR   rb  Flask.add_template_testh  s     45T/QZZ0rT   c                   ^ ^ SUU 4S jjnU$ )aw  A decorator that is used to register a custom template global function.
You can specify a name for the global function, otherwise the function
name will be used. Example::

    @app.template_global()
    def double(n):
        return 2 * n

.. versionadded:: 0.10

:param name: the optional name of the global function, otherwise the
             function name will be used.
c                (   > TR                  U TS9  U $ rP  )add_template_globalrR  s    rR   rT  (Flask.template_global.<locals>.decorator  rV  rT   )rS  rL   rW  rL   r   rX  s   `` rR   template_globalFlask.template_globalv  s    $	 	 rT   c                Z    XR                   R                  U=(       d    UR                  '   g)zRegister a custom template global function. Works exactly like the
:meth:`template_global` decorator.

.. versionadded:: 0.10

:param name: the optional name of the global function, otherwise the
             function name will be used.
N)r   r   r]  r^  s      rR   rk  Flask.add_template_global  s     67t1qzz2rT   c                <    U R                   R                  U5        U$ )a   Registers a function to be called when the application
context is popped. The application context is typically popped
after the request context for each request, at the end of CLI
commands, or after a manually pushed context ends.

.. code-block:: python

    with app.app_context():
        ...

When the ``with`` block exits (or ``ctx.pop()`` is called), the
teardown functions are called just before the app context is
made inactive. Since a request context typically also manages an
application context it would also be called when you pop a
request context.

When a teardown function was called because of an unhandled
exception it will be passed an error object. If an
:meth:`errorhandler` is registered, it will handle the exception
and the teardown will not receive it.

Teardown functions must avoid raising exceptions. If they
execute code that might fail they must surround that code with a
``try``/``except`` block and log any errors.

The return values of teardown functions are ignored.

.. versionadded:: 0.9
)r   appendr   rS  s     rR   teardown_appcontextFlask.teardown_appcontext  s    > 	&&--a0rT   c                <    U R                   R                  U5        U$ )zFRegisters a shell context processor function.

.. versionadded:: 0.11
)r   rr  rs  s     rR   shell_context_processorFlask.shell_context_processor  s     	%%,,Q/rT   c                ,   U R                  [        U5      5      u  p#/ [        R                  QSP7nUb  US4OS HV  nU HM  nU R                  U   U   nU(       d  M  UR
                   H  nUR                  U5      n	U	c  M  U	s  s  s  $    MO     MX     g)a  Return a registered error handler for an exception in this order:
blueprint handler for a specific code, app handler for a specific code,
blueprint handler for an exception class, app handler for an exception
class, or ``None`` if a suitable handler is not found.
Nr   )_get_exc_class_and_codetyper(   r   error_handler_spec__mro__r  )
r   e	exc_classcoder   cr   handler_mapr.  handlers
             rR   _find_error_handlerFlask._find_error_handler  s     66tAw?	+'$$+d+!%!1$w>A"55d;A>"$,,C)ooc2G*&	 -  ? rT   c                    UR                   c  U$ [        U[        5      (       a  U$ U R                  U5      nUc  U$ U R	                  U5      " U5      $ )a  Handles an HTTP exception.  By default this will invoke the
registered error handlers and fall back to returning the
exception as response.

.. versionchanged:: 1.0.3
    ``RoutingException``, used internally for actions such as
     slash redirects during routing, is not passed to error
     handlers.

.. versionchanged:: 1.0
    Exceptions are looked up by code *and* by MRO, so
    ``HTTPException`` subclasses can be handled with a catch-all
    handler for the base ``HTTPException``.

.. versionadded:: 0.3
)r  rP   r   r  ensure_syncr   r~  r  s      rR   handle_http_exceptionFlask.handle_http_exception  sW    * 66>H
 a)**H**1-?H(++rT   c                    U R                   S   (       a  gU R                   S   nUc'  U R                  (       a  [        U[        5      (       a  gU(       a  [        U[        5      $ g)a  Checks if an HTTP exception should be trapped or not.  By default
this will return ``False`` for all exceptions except for a bad request
key error if ``TRAP_BAD_REQUEST_ERRORS`` is set to ``True``.  It
also returns ``True`` if ``TRAP_HTTP_EXCEPTIONS`` is set to ``True``.

This is called for all HTTP exceptions raised by a view function.
If it returns ``True`` for any exception the error handler for this
exception is not called and it shows up as regular exception in the
traceback.  This is helpful for debugging implicitly raised HTTP
exceptions.

.. versionchanged:: 1.0
    Bad request errors are not trapped by default in debug mode.

.. versionadded:: 0.8
rr   Trq   F)r   r   rP   r   r   )r   r~  trap_bad_requests      rR   trap_http_exceptionFlask.trap_http_exception  sW    " ;;-.;;'@A $

1011a,,rT   c                T   [        U[        5      (       a,  U R                  (       d  U R                  S   (       a  SUl        [        U[
        5      (       a'  U R                  U5      (       d  U R                  U5      $ U R                  U5      nUc  e U R                  U5      " U5      $ )a  This method is called whenever an exception occurs that
should be handled. A special case is :class:`~werkzeug
.exceptions.HTTPException` which is forwarded to the
:meth:`handle_http_exception` method. This function will either
return a response value or reraise the exception with the same
traceback.

.. versionchanged:: 1.0
    Key errors raised from request data like ``form`` show the
    bad key in debug mode rather than a generic bad request
    message.

.. versionadded:: 0.7
rq   T)
rP   r   r   r   show_exceptionr   r  r  r  r  r  s      rR   handle_user_exceptionFlask.handle_user_exception&  s    " a+,,JJ$++&?@#Aa''0H0H0K0K--a00**1-?(++rT   c                   [         R                  " 5       n[        R                  " X R                  US9  U R
                  S   nUc  U R                  =(       d    U R                  nU(       a  US   UL a  e UeU R                  U5        [        US9nU R                  U5      nUb  U R	                  U5      " U5      nU R                  USS9$ )a  Handle an exception that did not have an error handler
associated with it, or that was raised from an error handler.
This always causes a 500 ``InternalServerError``.

Always sends the :data:`got_request_exception` signal.

If :data:`PROPAGATE_EXCEPTIONS` is ``True``, such as in debug
mode, the error will be re-raised so that the debugger can
display it. Otherwise, the original exception is logged, and
an :exc:`~werkzeug.exceptions.InternalServerError` is returned.

If an error handler is registered for ``InternalServerError`` or
``500``, it will be used. For consistency, the handler will
always receive the ``InternalServerError``. The original
unhandled exception is available as ``e.original_exception``.

.. versionchanged:: 1.1.0
    Always passes the ``InternalServerError`` instance to the
    handler, setting ``original_exception`` to the unhandled
    error.

.. versionchanged:: 1.1.0
    ``after_request`` functions and other finalization is done
    even for the default 500 response when there is no handler.

.. versionadded:: 0.3
)_async_wrapper	exceptionr`   r   )original_exceptionT)from_error_handler)r   exc_infor;   sendr  r   r+  r   log_exceptionr   r  finalize_request)r   r~  r  	propagateserver_errorr  s         rR   handle_exceptionFlask.handle_exceptionF  s    8 <<>""48H8HTUVKK 67	2

I {aG8$*a@**<8++G4\BL$$\d$KKrT   c                ~    U R                   R                  S[        R                   S[        R                   S3US9  g)zLogs an exception.  This is called by :meth:`handle_exception`
if debugging is disabled and right before the handler is called.
The default implementation logs the exception as error on the
:attr:`logger`.

.. versionadded:: 0.8
zException on z [])r  N)r   errorr(   r   method)r   r  s     rR   r  Flask.log_exception{  s8     	GLL>GNN+;1= 	 	
rT   c                    U R                   (       aI  [        UR                  [        5      (       a*  UR                  R                  S;   d  UR
                  S;   a  UR                  eSSKJn  U" U5      e)a  Intercept routing exceptions and possibly do something else.

In debug mode, intercept a routing redirect and replace it with
an error if the body will be discarded.

With modern Werkzeug this shouldn't occur, since it now uses a
308 status which tells the browser to resend the method and
body.

.. versionchanged:: 2.1
    Don't intercept 307 and 308 redirects.

:meta private:
:internal:
>   3  4  >   r?  HEADrB  r   )FormDataRoutingRedirect)r   rP   routing_exceptionr   r  r  debughelpersr  )r   r(   r  s      rR   raise_routing_exceptionFlask.raise_routing_exception  sY    " 

g77II((--;~~!;;+++9%g..rT   c                N   [         R                  nUR                  b  U R                  U5        UR                  n[        USS5      (       a   UR                  S:X  a  U R                  5       $ UR                  nU R                  U R                  UR                     5      " S0 UD6$ )a  Does the request dispatching.  Matches the URL and returns the
return value of the view or error handler.  This does not have to
be a response object.  In order to convert the return value to a
proper response object, call :func:`make_response`.

.. versionchanged:: 0.7
   This no longer does the exception handling, this code was
   moved to the new :meth:`full_dispatch_request`.
rA  FrB  r   )r)   r(   r  r  url_ruler   r  make_default_options_response	view_argsr  rI  r   )r   reqrJ  r  s       rR   dispatch_requestFlask.dispatch_request  s     !!  ,((-\\ D5u==

i'5577&)mm	 3 3DMM BCPiPPrT   c                   SU l          [        R                  " X R                  S9  U R	                  5       nUc  U R                  5       nU R                  U5      $ ! [         a  nU R                  U5      n SnAN1SnAff = f)zDispatches the request and on top of that performs request
pre and postprocessing as well as HTTP exception catching and
error handling.

.. versionadded:: 0.7
T)r  N)	r   r=   r  r  preprocess_requestr  	Exceptionr  r  )r   r   r~  s      rR   full_dispatch_requestFlask.full_dispatch_request  s{     #'	/  6F6FG((*Bz**, $$R((  	/++A.B	/s   AA 
B %A;;B c                    U R                  U5      n U R                  U5      n[        R                  " X R                  US9  U$ ! [
         a'    U(       d  e U R                  R                  S5         U$ f = f)a  Given the return value from a view function this finalizes
the request by converting it into a response and invoking the
postprocessing functions.  This is invoked for both normal
request dispatching as well as error handlers.

Because this means that it might be called as a result of a
failure a special safe mode is available which can be enabled
with the `from_error_handler` flag.  If enabled, failures in
response processing will be logged and otherwise ignored.

:internal:
)r  responsez?Request finalizing failed with an error while handling an error)make_responseprocess_responser<   r  r  r  r   r  )r   r   r  r  s       rR   r  Flask.finalize_request  s|    " %%b)
	,,X6H!!%5%5   	%KK!!Q 	s   0A -A65A6c                    [         R                  nUR                  5       nU R                  5       nUR                  R                  U5        U$ )zThis method is called to create the default ``OPTIONS`` response.
This can be changed through subclassing to change the default
behavior of ``OPTIONS`` responses.

.. versionadded:: 0.7
)r)   url_adapterallowed_methodsr,  allowr   )r   adapterr>  r   s       rR   r  #Flask.make_default_options_response  s@     ))))+  "
 	rT   c                    g)zThis is called to figure out if an error should be ignored
or not as far as the teardown system is concerned.  If this
function returns ``True`` then the teardown handlers will not be
passed the error.

.. versionadded:: 0.10
Fr   )r   r  s     rR   should_ignore_errorFlask.should_ignore_error  s     rT   c                H    [        U5      (       a  U R                  U5      $ U$ )a  Ensure that the function is synchronous for WSGI workers.
Plain ``def`` functions are returned as-is. ``async def``
functions are wrapped to run and wait for the response.

Override this method to change how the app runs async views.

.. versionadded:: 2.0
)r   async_to_sync)r   r   s     rR   r  Flask.ensure_sync  s%     t$$%%d++rT   c                T     SSK Jn  U" U5      $ ! [         a    [        S5      Sef = f)a  Return a sync function that will run the coroutine function.

.. code-block:: python

    result = app.async_to_sync(func)(*args, **kwargs)

Override this method to change how the app converts async code
to be synchronously callable.

.. versionadded:: 2.0
r   )r  zAInstall Flask with the 'async' extra in order to use async views.N)asgiref.syncr  ImportErrorRuntimeError)r   r   asgiref_async_to_syncs      rR   r  Flask.async_to_sync  s;    	K %T**  	S	s    '_anchor_method_scheme	_externalc               ^   [         R                  " S5      nUbB  UR                  nUR                  R                  n	USS S:X  a  U	b  U	 U 3nOUSS nUc  USLnOJ[
        R                  " S5      n
U
b  U
R                  nOU R                  S5      nUc  [        S5      eUc  SnUb  U(       d  [        S5      eU R                  X5         UR                  UUUUUS9nUb  [        US	S
9nU SU 3nU$ ! [         a,  nUR                  X#XES9  U R                  XU5      s SnA$ SnAff = f)a  Generate a URL to the given endpoint with the given values.

This is called by :func:`flask.url_for`, and can be called
directly as well.

An *endpoint* is the name of a URL rule, usually added with
:meth:`@app.route() <route>`, and usually the same name as the
view function. A route defined in a :class:`~flask.Blueprint`
will prepend the blueprint's name separated by a ``.`` to the
endpoint.

In some cases, such as email messages, you want URLs to include
the scheme and domain, like ``https://example.com/hello``. When
not in an active request, URLs will be external by default, but
this requires setting :data:`SERVER_NAME` so Flask knows what
domain to use. :data:`APPLICATION_ROOT` and
:data:`PREFERRED_URL_SCHEME` should also be configured as
needed. This config is only used when not in an active request.

Functions can be decorated with :meth:`url_defaults` to modify
keyword arguments before the URL is built.

If building fails for some reason, such as an unknown endpoint
or incorrect values, the app's :meth:`handle_url_build_error`
method is called. If that returns a string, that is returned,
otherwise a :exc:`~werkzeug.routing.BuildError` is raised.

:param endpoint: The endpoint name associated with the URL to
    generate. If this starts with a ``.``, the current blueprint
    name (if any) will be used.
:param _anchor: If given, append this as ``#anchor`` to the URL.
:param _method: If given, generate the URL associated with this
    method for the endpoint.
:param _scheme: If given, the URL will have this scheme if it
    is external.
:param _external: If given, prefer the URL to be internal
    (False) or require it to be external (True). External URLs
    include the scheme and domain. When not in an active
    request, URLs are external by default.
:param values: Values to use for the variable parts of the URL
    rule. Unknown keys are appended as query string arguments,
    like ``?a=b&c=d``.

.. versionadded:: 2.2
    Moved from ``flask.url_for``, which calls this method.
Nr   .zUnable to build URLs outside an active request without 'SERVER_NAME' configured. Also configure 'APPLICATION_ROOT' and 'PREFERRED_URL_SCHEME' as needed.Tz4When specifying '_scheme', '_external' must be True.)r  
url_schemeforce_externalr  z%!#$&'()*+,/:;=?@)safe#)r&   r  r  r(   r6  r%   create_url_adapterr  r   inject_url_defaultsbuildr   r   handle_url_build_error
_url_quote)r   r   r  r  r  r  r:  req_ctxr  blueprint_nameapp_ctxr   r  s                rR   r   Flask.url_for,  s   p //$'!--K$__66N |s"!-"0!1(<H'|H  #4/	kk$'G
 "%11"55d;""    	 ySTT  2	H"""( # B  /BCG4q	"B	  	HMM'   ..uGG		Hs   C6 6
D, !D'!D,'D,c                *    [        XU R                  S9$ )a  Create a redirect response object.

This is called by :func:`flask.redirect`, and can be called
directly as well.

:param location: The URL to redirect to.
:param code: The status code for the redirect.

.. versionadded:: 2.2
    Moved from ``flask.redirect``, which calls this method.
)r  r   )_wz_redirectr,  )r   locationr  s      rR   r   Flask.redirect  s     H$:M:MNNrT   c                   S=p#[        U[        5      (       aZ  [        U5      nUS:X  a  Uu  pnOCUS:X  a2  [        US   [        [        [        [
        45      (       a  Uu  pOUu  pO[        S5      eUc  [        S[        R                  < S35      e[        XR                  5      (       d  [        U[        [        [        45      (       d  [        U[        5      (       a  U R                  UUUS9nS=p#O[        U[        [
        45      (       a  U R                  R                  U5      nOs[        U[         5      (       d  [#        U5      (       a,   U R                  R%                  U[        R&                  5      nO"[        S[)        U5      R*                   S
35      e[2        R4                  " [6        U5      nUb-  [        U[        [        [        45      (       a  X!l        OX!l        U(       a  UR<                  R?                  U5        U$ ! [         aO  n[        U S	[)        U5      R*                   S
35      R-                  [.        R0                  " 5       S   5      SeSnAff = f)a9  Convert the return value from a view function to an instance of
:attr:`response_class`.

:param rv: the return value from the view function. The view function
    must return a response. Returning ``None``, or the view ending
    without returning, is not allowed. The following types are allowed
    for ``view_rv``:

    ``str``
        A response object is created with the string encoded to UTF-8
        as the body.

    ``bytes``
        A response object is created with the bytes as the body.

    ``dict``
        A dictionary that will be jsonify'd before being returned.

    ``list``
        A list that will be jsonify'd before being returned.

    ``generator`` or ``iterator``
        A generator that returns ``str`` or ``bytes`` to be
        streamed as the response.

    ``tuple``
        Either ``(body, status, headers)``, ``(body, status)``, or
        ``(body, headers)``, where ``body`` is any of the other types
        allowed here, ``status`` is a string or an integer, and
        ``headers`` is a dictionary or a list of ``(key, value)``
        tuples. If ``body`` is a :attr:`response_class` instance,
        ``status`` overwrites the exiting value and ``headers`` are
        extended.

    :attr:`response_class`
        The object is returned unchanged.

    other :class:`~werkzeug.wrappers.Response` class
        The object is coerced to :attr:`response_class`.

    :func:`callable`
        The function is called as a WSGI application. The result is
        used to create a response object.

.. versionchanged:: 2.2
    A generator will be converted to a streaming response.
    A list will be converted to a JSON response.

.. versionchanged:: 1.1
    A dict will be converted to a JSON response.

.. versionchanged:: 0.9
   Previously a tuple was interpreted as the arguments for the
   response object.
N   r   r   zThe view function did not return a valid response tuple. The tuple must have the form (body, status, headers), (body, status), or (body, headers).zThe view function for zh did not return a valid response. The function either returned None or ended without a return statement.)statusheadersz
The view function did not return a valid response. The return type must be a string, dict, list, tuple with headers or status, Response instance, or WSGI callable, but it was a r  zThe view function did not return a valid response. The return type must be a string, dict, list, tuple with headers or status, Response instance, or WSGI callable, but it was a ) rP   tuplelenr
   r]   listrD  r(   r   r,  r!  bytes	bytearray_abc_Iteratorr   r  BaseResponsecallable
force_typer  r{  r]  with_tracebackr   r  r  r   r   r  status_coder  r   )r   r   r  r  len_rvr~  s         rR   r  Flask.make_response  sF   r   b%  WF {&(#G1begtUD%ABB"$KB!#JB  ;  :()9)9(< == =  "1122"sE9566*R:W:W ((!# ) 
 $('Bt--YY''+B--"B,,77GOOB   R))*!	-  VVHb!&3y"9::"	!' JJg&	; ! B## " #'r("3"3!4A	7 %nS\\^A%67TBBs   *H 
I*A
I%%I*c                x   Ube  U R                   (       d   U R                  R                  =(       d    SnOSnU R                  R                  UR                  U R
                  S   US9$ U R
                  S   bB  U R                  R                  U R
                  S   U R
                  S   U R
                  S   S9$ g)a  Creates a URL adapter for the given request. The URL adapter
is created at a point where the request context is not yet set
up so the request is passed explicitly.

.. versionadded:: 0.6

.. versionchanged:: 0.9
   This can now also be called without a request object when the
   URL adapter is created for the application context.

.. versionchanged:: 1.0
    :data:`SERVER_NAME` no longer implicitly enables subdomain
    matching. Use :attr:`subdomain_matching` instead.
Nrd   )r#  	subdomainre   rt   )script_namer  )r   r   default_subdomainbind_to_environr  r   bind)r   r(   r  s      rR   r  Flask.create_url_adapterC  s      ** LL::Bd	 	<<// KK6# 0   ;;}%1<<$$M* KK(:;;;'=> %   rT   c           
         SnSU;   a0  [        U[        [        UR                  S5      S   5      5      5      nU H2  nX@R                  ;   d  M  U R                  U    H  nU" X5        M     M4     g)zInjects the URL defaults for the given endpoint directly into
the values dictionary passed.  This is used internally and
automatically called on URL building.

.. versionadded:: 0.7
r   r  r   N)r   r   r+   
rpartitionurl_default_functions)r   r   r:  r   r   r   s         rR   r  Flask.inject_url_defaultsk  sq     )0 (?x 5h6I6I#6Nq6Q RSE D111 66t<D* = rT   c                    U R                    H  n U" XU5      nUb  Us  $ M     U[        R                  " 5       S   L a  e Ue! [         a  nUn SnAMH  SnAff = f)a?  Called by :meth:`.url_for` if a
:exc:`~werkzeug.routing.BuildError` was raised. If this returns
a value, it will be returned by ``url_for``, otherwise the error
will be re-raised.

Each function in :attr:`url_build_error_handlers` is called with
``error``, ``endpoint`` and ``values``. If a function returns
``None`` or raises a ``BuildError``, it is skipped. Otherwise,
its return value is returned by ``url_for``.

:param error: The active ``BuildError`` being handled.
:param endpoint: The endpoint being built.
:param values: The keyword arguments passed to ``url_for``.
Nr   )r   r   r   r  )r   r  r   r:  r  r   r~  s          rR   r  Flask.handle_url_build_error  sj    " 44GUf5
 >I " 5 CLLN1%%  s   	A
AAAc                   S/[        [        R                  5      Q7nU HO  nX R                  ;   d  M  U R                  U    H(  nU" [        R                  [        R
                  5        M*     MQ     U HI  nX R                  ;   d  M  U R                  U    H"  nU R                  U5      " 5       nUc  M  Us  s  $    MK     g)a  Called before the request is dispatched. Calls
:attr:`url_value_preprocessors` registered with the app and the
current blueprint (if any). Then calls :attr:`before_request_funcs`
registered with the app and the blueprint.

If any :meth:`before_request` handler returns a non-None value, the
value is handled as if it was the return value from the view, and
further request handling is stopped.
N)r   r(   r   url_value_preprocessorsr   r  before_request_funcsr  )r   r   r   url_funcbefore_funcr   s         rR   r  Flask.preprocess_request  s     5!3!345D333 $ < <T BHW--w/@/@A !C 
 D000#'#<#<T#BK))+68B~!		 $C  rT   c                   [         R                  " 5       nUR                   H  nU R                  U5      " U5      nM     [	        [
        R                  S5       HJ  nX@R                  ;   d  M  [        U R                  U   5       H  nU R                  U5      " U5      nM     ML     U R                  R                  UR                  5      (       d&  U R                  R                  XR                  U5        U$ )a  Can be overridden in order to modify the response object
before it's sent to the WSGI server.  By default this will
call all the :meth:`after_request` decorated functions.

.. versionchanged:: 0.5
   As of Flask 0.5 the functions registered for after request
   execution are called in reverse order of registration.

:param response: a :attr:`response_class` object.
:return: a new response object or the same, has to be an
         instance of :attr:`response_class`.
r   )r)   _get_current_object_after_request_functionsr  r   r(   r   after_request_funcsr   ry   is_null_sessionr*   save_session)r   r  ctxr   r   s        rR   r  Flask.process_response  s     --/00D''-h7H 1 ',,g6D///$T%=%=d%CDD#//5h?H E 7
 %%55ckkBB""//kk8LrT   c                T   U[         L a  [        R                  " 5       S   n[        [        R
                  S5       HJ  nX R                  ;   d  M  [        U R                  U   5       H  nU R                  U5      " U5        M     ML     [        R                  " X R                  US9  g)a  Called after the request is dispatched and the response is
returned, right before the request context is popped.

This calls all functions decorated with
:meth:`teardown_request`, and :meth:`Blueprint.teardown_request`
if a blueprint handled the request. Finally, the
:data:`request_tearing_down` signal is sent.

This is called by
:meth:`RequestContext.pop() <flask.ctx.RequestContext.pop>`,
which may be delayed during testing to maintain access to
resources.

:param exc: An unhandled exception raised while dispatching the
    request. Detected from the current exception information if
    not passed. Passed to each teardown function.

.. versionchanged:: 0.9
    Added the ``exc`` argument.
r   r   r  excN)r4   r   r  r   r(   r   teardown_request_funcsr   r  r>   r  )r   r  r   r   s       rR   do_teardown_requestFlask.do_teardown_request  s    . ),,.#C',,g6D222$T%@%@%FGD$$T*3/ H 7
 	!!$7G7GSQrT   c                    U[         L a  [        R                  " 5       S   n[        U R                  5       H  nU R                  U5      " U5        M     [        R                  " X R
                  US9  g)a  Called right before the application context is popped.

When handling a request, the application context is popped
after the request context. See :meth:`do_teardown_request`.

This calls all functions decorated with
:meth:`teardown_appcontext`. Then the
:data:`appcontext_tearing_down` signal is sent.

This is called by
:meth:`AppContext.pop() <flask.ctx.AppContext.pop>`.

.. versionadded:: 0.9
r   r  N)r4   r   r  r   r   r  r:   r  )r   r  r   s      rR   do_teardown_appcontextFlask.do_teardown_appcontext  s]    " ),,.#CT;;<DT"3' = 	 $$T:J:JPSTrT   c                    [        U 5      $ )a  Create an :class:`~flask.ctx.AppContext`. Use as a ``with``
block to push the context, which will make :data:`current_app`
point at this application.

An application context is automatically pushed by
:meth:`RequestContext.push() <flask.ctx.RequestContext.push>`
when handling a request, and when running a CLI command. Use
this to manually create a context outside of these situations.

::

    with app.app_context():
        init_db()

See :doc:`/appcontext`.

.. versionadded:: 0.9
r!   r   s    rR   app_contextFlask.app_context  s    & $rT   c                    [        X5      $ )a  Create a :class:`~flask.ctx.RequestContext` representing a
WSGI environment. Use a ``with`` block to push the context,
which will make :data:`request` point at this request.

See :doc:`/reqcontext`.

Typically you should not call this from your own code. A request
context is automatically pushed by the :meth:`wsgi_app` when
handling a request. Use :meth:`test_request_context` to create
an environment and context instead of this method.

:param environ: a WSGI environment
r#   )r   r  s     rR   request_contextFlask.request_context(  s     d,,rT   c                    SSK Jn  U" U /UQ70 UD6n U R                  UR                  5       5      UR	                  5         $ ! UR	                  5         f = f)a  Create a :class:`~flask.ctx.RequestContext` for a WSGI
environment created from the given values. This is mostly useful
during testing, where you may want to run a function that uses
request data without dispatching a full request.

See :doc:`/reqcontext`.

Use a ``with`` block to push the context, which will make
:data:`request` point at the request for the created
environment. ::

    with app.test_request_context(...):
        generate_report()

When using the shell, it may be easier to push and pop the
context manually to avoid indentation. ::

    ctx = app.test_request_context(...)
    ctx.push()
    ...
    ctx.pop()

Takes the same arguments as Werkzeug's
:class:`~werkzeug.test.EnvironBuilder`, with some defaults from
the application. See the linked Werkzeug docs for most of the
available arguments. Flask-specific behavior is listed here.

:param path: URL path being requested.
:param base_url: Base URL where the app is being served, which
    ``path`` is relative to. If not given, built from
    :data:`PREFERRED_URL_SCHEME`, ``subdomain``,
    :data:`SERVER_NAME`, and :data:`APPLICATION_ROOT`.
:param subdomain: Subdomain name to append to
    :data:`SERVER_NAME`.
:param url_scheme: Scheme to use instead of
    :data:`PREFERRED_URL_SCHEME`.
:param data: The request body, either as a string or a dict of
    form keys and values.
:param json: If given, this is serialized as JSON and passed as
    ``data``. Also defaults ``content_type`` to
    ``application/json``.
:param args: other positional arguments passed to
    :class:`~werkzeug.test.EnvironBuilder`.
:param kwargs: other keyword arguments passed to
    :class:`~werkzeug.test.EnvironBuilder`.
r   )EnvironBuilder)r+  r%  r"  get_environclose)r   argsr-  r%  builders        rR   test_request_contextFlask.test_request_context8  sK    ^ 	, 777	''(;(;(=>MMOGMMOs   A Ac                   U R                  U5      nSn  UR                  5         U R                  5       nU" X5      SU;   a<  US   " [        R                  " 5       5        US   " [        R                  " 5       5        Ub  U R                  U5      (       a  SnUR                  U5        $ ! [         a  nUnU R	                  U5      n SnANSnAf  [
        R                  " 5       S   ne = f! SU;   a<  US   " [        R                  " 5       5        US   " [        R                  " 5       5        Ub  U R                  U5      (       a  SnUR                  U5        f = f)a:  The actual WSGI application. This is not implemented in
:meth:`__call__` so that middlewares can be applied without
losing a reference to the app object. Instead of doing this::

    app = MyMiddleware(app)

It's a better idea to do this instead::

    app.wsgi_app = MyMiddleware(app.wsgi_app)

Then you still have the original application object around and
can continue to call methods on it.

.. versionchanged:: 0.7
    Teardown events for the request and app contexts are called
    even if an unhandled error occurs. Other events may not be
    called depending on when an error occurs during dispatch.
    See :ref:`callbacks-and-errors`.

:param environ: A WSGI environment.
:param start_response: A callable accepting a status code,
    a list of headers, and an optional exception context to
    start the response.
Nr   zwerkzeug.debug.preserve_context)r"  pushr  r  r  r   r  r%   r  r&   r  rC  )r   r  start_responser  r  r  r~  s          rR   wsgi_appFlask.wsgi_appp  s/   2 ""7+&*	
557 G40G;9:7;;=I9:;??;LM T%=%=e%D%DGGEN  4003q) 1G;9:7;;=I9:;??;LM T%=%=e%D%DGGENs/    B, C/ ,
C,6C	C/ C,,C/ /A0Ec                $    U R                  X5      $ )zThe WSGI server calls the Flask application object as the
WSGI application. This calls :meth:`wsgi_app`, which can be
wrapped to apply middleware.
)r/  )r   r  r.  s      rR   __call__Flask.__call__  s    
 }}W55rT   )r   r   r   r   r   r   r   r   r   r   r   r   r   )	Nr   NFF	templatesNFN)r{   r!  r}   
str | Noner|   str | os.PathLike | Noner   r5  r   r   r   r   r~   r6  r   r5  r   r   r   r5  )r   r!  rW  None)rW  r!  )rW  zlogging.Logger)rW  rA   )rW  r   )F)r   r   rW  r   )rW  r   )rb)r   r!  r   r!  rW  zt.IO[t.AnyStr])rW  r@   )r   r!  rW  r   )r   r]   rW  r7  )rW  r]   )rQ   r   rW  r7  )NNNT)r   r5  r"  z
int | Noner   bool | Noner  r   r   t.AnyrW  r7  )T)r*  r   r-  r:  rW  rE   )r-  r:  rW  rG   )r6  rC   r   r:  rW  r7  )rW  zt.ValuesView[Blueprint])NNN)rJ  r!  r   r5  r   zft.RouteCallable | NonerA  r9  r   r:  rW  r7  r   )r   r5  rW  z2t.Callable[[T_template_filter], T_template_filter])rS  zft.TemplateFilterCallabler   r5  rW  r7  )r   r5  rW  z.t.Callable[[T_template_test], T_template_test])rS  zft.TemplateTestCallabler   r5  rW  r7  )r   r5  rW  z2t.Callable[[T_template_global], T_template_global])rS  zft.TemplateGlobalCallabler   r5  rW  r7  )rS  rJ   rW  rJ   )rS  rH   rW  rH   )r~  r  rW  zft.ErrorHandlerCallable | None)r~  r   rW  &HTTPException | ft.ResponseReturnValue)r~  r  rW  r   )r~  r  rW  r;  )r~  r  rW  r   )r  zCtuple[type, BaseException, TracebackType] | tuple[None, None, None]rW  r7  )r(   rB   rW  z
t.NoReturn)rW  ft.ResponseReturnValue)rW  r   )r   z&ft.ResponseReturnValue | HTTPExceptionr  r   rW  r   )r  BaseException | NonerW  r   )r   
t.CallablerW  r>  )r   zt.Callable[..., t.Coroutine]rW  zt.Callable[..., t.Any])r   r!  r  r5  r  r5  r  r5  r  r9  r:  r:  rW  r!  )i.  )r  r!  r  r  rW  r  )r   r<  rW  r   )r(   zRequest | NonerW  zMapAdapter | None)r   r!  r:  r]   rW  r7  )r  r   r   r!  r:  zdict[str, t.Any]rW  r!  )rW  zft.ResponseReturnValue | None)r  r   rW  r   )r  r=  rW  r7  )rW  r"   )r  r]   rW  r$   )r(  r:  r-  r:  rW  r$   )r  r]   r.  r>  rW  r:  )gr]  
__module____qualname____firstlineno____doc__rB   request_classr   r,  r   r   rA   r   r    app_ctx_globals_classr   r   r   r+  
secret_keyrS   permanent_session_lifetimer/   r\   __annotations__r^   r   r   r   r   rH  r   r   rw   rx   r8   ry   r   r   r   r   r   r   propertyr   r   r   r   r   r   r   r   r   r  r   setterr'  r/  r2  r7   r7  r;  r   rY  rQ  rd  rb  rm  rk  rt  rw  r  r  r  r  r  r  r  r  r  r  r  r  r  r  r   r   r  r  r  r  r  r  r4   r  r  r  r"  r*  r/  r2  __static_attributes____classcell__)r   s   @rR   rV   rV   \   s   ^D M N M
 $  + L i(G !.J "1$O" /B+A	( M4 #	
T	
u	
 #D	
 $		

 ))*<	
 e	
 4	
 	
 "9	
 $T	
 "4	
 &t	
 $U	
 &t	
 +D	
  !$!	
" (#	
$ (,$)(-$*%)#/	
N@ N M 37/6 :>6= +G*H'H
 '+2:"&##(4?$(). $Y"Y" $Y" 0	Y"
  Y" Y" !Y" 2Y" "Y" #'Y" Y" Y"v
      # #4 / / ' '$6 
$D
F&P,N!8
 
$ 
$ \\/ /  ! y,y, y, 	y,
 y, y, 
y,v8
t#" * *6(   $-1158686 86 +	86
 $/86 86 
86 86t !%	; * ?C	7*	72<	7		7 	7 !%	7 8 =A5(50:5	5 5 !%	; . ?C7*72<7	7 7  B *	" .!,!,	/!,F!F,,	/,@3Lj
V
 

/8Q2)* $)2 ! 
	>+0+	+6 #""!%{{ 	{
 { { { { 
{zOJX&P+*  +. 8H 	 D6: +4R'R	RD +4U'U	U2 *- 6p.`6 6rT   rV   )rQ   ztimedelta | int | NonerW  ztimedelta | None)q
__future__r   loggingr   r   r   r  r   collections.abcr   r  datetimer   inspectr   	itertoolsr   typesr   urllib.parser	   r  r  werkzeug.datastructuresr
   r   werkzeug.exceptionsr   r   r   r   r   werkzeug.routingr   r   r   r   r   r   r  r   werkzeug.utilsr   r   r  werkzeug.wrappersr   r   r   ftr   r   r   r  r    r"   r$   r   r%   r&   r'   r(   r)   r*   helpersr+   r,   r-   r.   json.providerr/   r0   r2   scaffoldr3   r4   r5   r6   r7   sessionsr8   r9   signalsr:   r;   r<   r=   r>   
templatingr@   rA   wrappersrB   TYPE_CHECKINGr   rC   r+  rE   rG   TypeVarShellContextProcessorCallablerH   TeardownCallablerJ   TemplateFilterCallablerK   TemplateGlobalCallablerL   TemplateTestCallablerM   rS   rV   r   rT   rR   <module>ri     sg   "  	 
   5  '   ,  + 1 ' * 2 - 3 '   ' , - ! 5 * 3 6    #            * # ) $ . ' " .  "  ! 2 & , * % $ ) . #  ??%$'IIr'G'G  YY|2+>+>?
II19R9RS II19R9RS ))-R5L5LM$I!6H I!6rT   