pages.nl: use " " instead of "=" to separate the options from their arguments, cut: fix example (#12690)

This commit is contained in:
Sebastiaan Speck
2024-05-04 09:32:33 +02:00
committed by GitHub
parent 2926bdb701
commit e658cb36a9
8 changed files with 16 additions and 16 deletions

View File

@@ -13,11 +13,11 @@
- Converteer specifieke Python 2-taalfuncties naar Python 3:
`2to3 --write {{pad/naar/bestand.py}} --fix={{raw_input}} --fix={{print}}`
`2to3 --write {{pad/naar/bestand.py}} --fix {{raw_input}} --fix {{print}}`
- Converteer alle Python 2-taalfuncties behalve de gespecificeerde naar Python 3:
`2to3 --write {{pad/naar/bestand.py}} --nofix={{has_key}} --nofix={{isinstance}}`
`2to3 --write {{pad/naar/bestand.py}} --nofix {{has_key}} --nofix {{isinstance}}`
- Geef een lijst weer met alle beschikbare taalfuncties die kunnen worden geconverteerd van Python 2 naar Python 3:
@@ -25,8 +25,8 @@
- Converteer alle Python 2-bestanden in een map naar Python 3:
`2to3 --output-dir={{pad/naar/python3_map}} --write-unchanged-files --nobackups {{pad/naar/python2_map}}`
`2to3 --output-dir {{pad/naar/python3_map}} --write-unchanged-files --nobackups {{pad/naar/python2_map}}`
- Voer 2to3 uit met meerdere threads:
`2to3 --processes={{4}} --output-dir={{pad/naar/python3_map}} --write --nobackups --no-diff {{pad/naar/python2_map}}`
`2to3 --processes {{4}} --output-dir {{pad/naar/python3_map}} --write --nobackups --no-diff {{pad/naar/python2_map}}`