From 1aa9bc0792f1c4916fdfd0ea405b18c9cc9b78c6 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 11 Dec 2025 14:20:31 +0100 Subject: [PATCH] Remove code examples for Python 3.8 in `debugging` --- docs/en/docs/tutorial/debugging.md | 2 +- docs_src/debugging/{tutorial001.py => tutorial001_py39.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename docs_src/debugging/{tutorial001.py => tutorial001_py39.py} (100%) diff --git a/docs/en/docs/tutorial/debugging.md b/docs/en/docs/tutorial/debugging.md index 08b440084..a2edfe720 100644 --- a/docs/en/docs/tutorial/debugging.md +++ b/docs/en/docs/tutorial/debugging.md @@ -6,7 +6,7 @@ You can connect the debugger in your editor, for example with Visual Studio Code In your FastAPI application, import and run `uvicorn` directly: -{* ../../docs_src/debugging/tutorial001.py hl[1,15] *} +{* ../../docs_src/debugging/tutorial001_py39.py hl[1,15] *} ### About `__name__ == "__main__"` { #about-name-main } diff --git a/docs_src/debugging/tutorial001.py b/docs_src/debugging/tutorial001_py39.py similarity index 100% rename from docs_src/debugging/tutorial001.py rename to docs_src/debugging/tutorial001_py39.py