Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for traceback (0.12 seconds)

  1. fastapi/routing.py

        async def __aexit__(
            self,
            exc_type: type[BaseException] | None,
            exc_value: BaseException | None,
            traceback: types.TracebackType | None,
        ) -> bool | None:
            return self._cm.__exit__(exc_type, exc_value, traceback)
    
    
    # Vendored from starlette.routing to avoid importing private symbols
    def _wrap_gen_lifespan_context(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  2. fastapi/applications.py

        ```
        """
    
        def __init__(
            self: AppType,
            *,
            debug: Annotated[
                bool,
                Doc(
                    """
                    Boolean indicating if debug tracebacks should be returned on server
                    errors.
    
                    Read more in the
                    [Starlette docs for Applications](https://www.starlette.dev/applications/#instantiating-the-application).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
Back to Top