From f57bac4afb74c42b8900eeaf6978e3dbb9b01c12 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 11 Dec 2025 09:53:30 +0100 Subject: [PATCH] Remove code examples for Python 3.8 in `path_params` --- docs/en/docs/tutorial/path-params.md | 20 +++++++++---------- .../{tutorial001.py => tutorial001_py39.py} | 0 .../{tutorial002.py => tutorial002_py39.py} | 0 .../{tutorial003.py => tutorial003_py39.py} | 0 .../{tutorial003b.py => tutorial003b_py39.py} | 0 .../{tutorial004.py => tutorial004_py39.py} | 0 .../{tutorial005.py => tutorial005_py39.py} | 0 .../test_path_params/test_tutorial004.py | 2 +- .../test_path_params/test_tutorial005.py | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) rename docs_src/path_params/{tutorial001.py => tutorial001_py39.py} (100%) rename docs_src/path_params/{tutorial002.py => tutorial002_py39.py} (100%) rename docs_src/path_params/{tutorial003.py => tutorial003_py39.py} (100%) rename docs_src/path_params/{tutorial003b.py => tutorial003b_py39.py} (100%) rename docs_src/path_params/{tutorial004.py => tutorial004_py39.py} (100%) rename docs_src/path_params/{tutorial005.py => tutorial005_py39.py} (100%) diff --git a/docs/en/docs/tutorial/path-params.md b/docs/en/docs/tutorial/path-params.md index 457cc2713..23c3281eb 100644 --- a/docs/en/docs/tutorial/path-params.md +++ b/docs/en/docs/tutorial/path-params.md @@ -2,7 +2,7 @@ You can declare path "parameters" or "variables" with the same syntax used by Python format strings: -{* ../../docs_src/path_params/tutorial001.py hl[6:7] *} +{* ../../docs_src/path_params/tutorial001_py39.py hl[6:7] *} The value of the path parameter `item_id` will be passed to your function as the argument `item_id`. @@ -16,7 +16,7 @@ So, if you run this example and go to