summaryrefslogtreecommitdiffhomepage
path: root/cs-cz/python.html.markdown
Commit message (Collapse)AuthorAgeLines
* Fix bad description of floor divisionTomáš Bedřich2020-02-19-1/+2
|
* fix cs-cz python3 againAdam Bard2020-02-13-1/+1
|
* fix cs-cz python3Adam Bard2020-02-13-2/+2
|
* Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'Simon Shine2020-02-12-1/+1
| | | | The list of references is exhausted by running 'ack docs/python'.
* Rename Python 3 markdown files into 'python'Simon Shine2020-02-12-0/+647
``` for f in $(find . -iname "*python3*" | grep -vE 'git'); do fnew=$(echo "$f" | sed 's/python3/python/') git mv "$f" "$fnew" done