python: remove placeholders (#11804)

pull/23/head
Sebastiaan Speck 2023-12-21 08:26:25 +01:00 committed by GitHub
parent 13dc362fa8
commit c9f764ffa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -29,8 +29,8 @@
- Depura interativamente um script de Python:
`python -m {{pdb}} {{caminho/para/arquivo.py}}`
`python -m pdb {{caminho/para/arquivo.py}}`
- Inicia o servidor HTTP integrado na porta 8000 no diretório atual:
`python -m {{http.server}}`
`python -m http.server`

View File

@ -29,8 +29,8 @@
- 互动调试 Python 脚本:
`python -m {{pdb}} {{路径/到/文件.py}}`
`python -m pdb {{路径/到/文件.py}}`
- 在当前目录中的端口 8000 上启动内置的 HTTP 服务器:
`python -m {{http.server}}`
`python -m http.server`

View File

@ -29,8 +29,8 @@
- Interactively debug a Python script:
`python -m {{pdb}} {{path/to/file.py}}`
`python -m pdb {{path/to/file.py}}`
- Start the built-in HTTP server on port 8000 in the current directory:
`python -m {{http.server}}`
`python -m http.server`