Browse Source
📝 Update includes in `docs/en/docs/advanced/additional-status-codes.md` (#12577)
pull/12629/head
Krishna Madhavan
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
51 deletions
-
docs/en/docs/advanced/additional-status-codes.md
|
|
@ -14,57 +14,7 @@ But you also want it to accept new items. And when the items didn't exist before |
|
|
|
|
|
|
|
To achieve that, import `JSONResponse`, and return your content there directly, setting the `status_code` that you want: |
|
|
|
|
|
|
|
//// tab | Python 3.10+ |
|
|
|
|
|
|
|
```Python hl_lines="4 25" |
|
|
|
{!> ../../docs_src/additional_status_codes/tutorial001_an_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.9+ |
|
|
|
|
|
|
|
```Python hl_lines="4 25" |
|
|
|
{!> ../../docs_src/additional_status_codes/tutorial001_an_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ |
|
|
|
|
|
|
|
```Python hl_lines="4 26" |
|
|
|
{!> ../../docs_src/additional_status_codes/tutorial001_an.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.10+ non-Annotated |
|
|
|
|
|
|
|
/// tip |
|
|
|
|
|
|
|
Prefer to use the `Annotated` version if possible. |
|
|
|
|
|
|
|
/// |
|
|
|
|
|
|
|
```Python hl_lines="2 23" |
|
|
|
{!> ../../docs_src/additional_status_codes/tutorial001_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ non-Annotated |
|
|
|
|
|
|
|
/// tip |
|
|
|
|
|
|
|
Prefer to use the `Annotated` version if possible. |
|
|
|
|
|
|
|
/// |
|
|
|
|
|
|
|
```Python hl_lines="4 25" |
|
|
|
{!> ../../docs_src/additional_status_codes/tutorial001.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
{* ../../docs_src/additional_status_codes/tutorial001_an_py310.py hl[4,25] *} |
|
|
|
|
|
|
|
/// warning |
|
|
|
|
|
|
|