Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for iscoroutinefunction (0.28 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_dependency_wrapped.py

    from fastapi.testclient import TestClient
    
    if sys.version_info >= (3, 13):  # pragma: no cover
        from inspect import iscoroutinefunction
    else:  # pragma: no cover
        from asyncio import iscoroutinefunction
    
    
    def noop_wrap(func):
        @wraps(func)
        def wrapper(*args, **kwargs):
            return func(*args, **kwargs)
    
        return wrapper
    
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 11.2K bytes
    - Click Count (0)
Back to Top