summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/litestar/utils/warnings.py
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
committercyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
commit12cf076118570eebbff08c6b3090e0d4798447a1 (patch)
tree3ba25e17e3c3a5e82316558ba3864b955919ff72 /venv/lib/python3.11/site-packages/litestar/utils/warnings.py
parentc45662ff3923b34614ddcc8feb9195541166dcc5 (diff)
no venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/litestar/utils/warnings.py')
-rw-r--r--venv/lib/python3.11/site-packages/litestar/utils/warnings.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/venv/lib/python3.11/site-packages/litestar/utils/warnings.py b/venv/lib/python3.11/site-packages/litestar/utils/warnings.py
deleted file mode 100644
index e20484b..0000000
--- a/venv/lib/python3.11/site-packages/litestar/utils/warnings.py
+++ /dev/null
@@ -1,51 +0,0 @@
-import os
-import warnings
-
-from litestar.exceptions import LitestarWarning
-from litestar.types import AnyCallable, AnyGenerator
-
-
-def warn_implicit_sync_to_thread(source: AnyCallable, stacklevel: int = 2) -> None:
- if os.getenv("LITESTAR_WARN_IMPLICIT_SYNC_TO_THREAD") == "0":
- return
-
- warnings.warn(
- f"Use of a synchronous callable {source} without setting sync_to_thread is "
- "discouraged since synchronous callables can block the main thread if they "
- "perform blocking operations. If the callable is guaranteed to be non-blocking, "
- "you can set sync_to_thread=False to skip this warning, or set the environment"
- "variable LITESTAR_WARN_IMPLICIT_SYNC_TO_THREAD=0 to disable warnings of this "
- "type entirely.",
- category=LitestarWarning,
- stacklevel=stacklevel,
- )
-
-
-def warn_sync_to_thread_with_async_callable(source: AnyCallable, stacklevel: int = 2) -> None:
- if os.getenv("LITESTAR_WARN_SYNC_TO_THREAD_WITH_ASYNC") == "0":
- return
-
- warnings.warn(
- f"Use of an asynchronous callable {source} with sync_to_thread; sync_to_thread "
- "has no effect on async callable. You can disable this warning by setting "
- "LITESTAR_WARN_SYNC_TO_THREAD_WITH_ASYNC=0",
- category=LitestarWarning,
- stacklevel=stacklevel,
- )
-
-
-def warn_sync_to_thread_with_generator(source: AnyGenerator, stacklevel: int = 2) -> None:
- if os.getenv("LITESTAR_WARN_SYNC_TO_THREAD_WITH_GENERATOR") == "0":
- return
-
- warnings.warn(
- f"Use of generator {source} with sync_to_thread; sync_to_thread has no effect "
- "on generators. You can disable this warning by setting "
- "LITESTAR_WARN_SYNC_TO_THREAD_WITH_GENERATOR=0",
- category=LitestarWarning,
- stacklevel=stacklevel,
- )
-
-
-def warn_pdb_on_exception(stacklevel: int = 2) -> None:
- warnings.warn("Python Debugger on exception enabled", category=LitestarWarning, stacklevel=stacklevel)