Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Content (0.14 sec)

  1. tests/test_dependency_contextmanager.py

    
    @app.get("/context_b")
    async def get_context_b(state: dict = Depends(context_b)):
        return state
    
    
    @app.get("/context_b_raise")
    async def get_context_b_raise(state: dict = Depends(context_b)):
        assert state["context_b"] == "started b"
        assert state["context_a"] == "started a"
        raise OtherDependencyError()
    
    
    @app.get("/context_b_bg")
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Feb 24 23:06:37 GMT 2024
    - 11.6K bytes
    - Viewed (0)
Back to top