Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | [python/*] proofread en and ru and all links | Boris Verkhovskiy | 2024-04-26 | -2/+1 |
| | ||||
* | [python/*] remove feedback email request | Boris Verkhovskiy | 2024-04-07 | -2/+0 |
| | ||||
* | Remove leading and trailing empty lines in code blocks | Boris Verkhovskiy | 2024-04-06 | -1/+0 |
| | ||||
* | Merge pull request #4552 from SrMarques/patch-1 | Boris Verkhovskiy | 2024-04-04 | -1/+1 |
|\ | | | | | [python/es] Update incorrect variables | |||
| * | Update incorrect variables | SrMarques | 2022-11-24 | -2/+2 |
| | | ||||
* | | Update python-es.html.markdown | Gustavo Adolfo Mejía Sánchez | 2023-03-31 | -2/+2 |
| | | | | | | | | - comment explanation - translate the say function to "decir" to match with the final print | |||
* | | [python/es-es] parentheses required in print functions are added | luovkle | 2023-01-21 | -4/+4 |
|/ | ||||
* | Python 3: Use 'filename: learnpython*.py' (no '3') | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Before renaming, Python 3 filenames were 'learnpython3*.py'. This commit removes the '3' part from the filename. To verify that the filenames were named consistently across translations prior to this commit, and to change this: ``` ack -H 'filename:' python.html.markdown find . -name "python-*.markdown" -exec ack -H 'filename:' {} \; sed -i 's/^filename: learnpython3/filename: learnpython/' \ python.html.markdown find . -name "python-*.markdown" -exec \ sed -i 's/^filename: learnpython3/filename: learnpython/' {} \; ``` | |||
* | Python 3: 'language: Python' | Simon Shine | 2020-02-12 | -1/+1 |
| | | | | | | | | | | | | | Instead of listing 'language: python3' for Python 3, use language: Python as #3450 does. ``` find . -iname "python-*.markdown" -exec \ sed -i 's/language: python3/language: Python/' {} \; ``` | |||
* | Rename Python 3 markdown files into 'python' | Simon Shine | 2020-02-12 | -0/+577 |
| | | | | | | | | ``` for f in $(find . -iname "*python3*" | grep -vE 'git'); do fnew=$(echo "$f" | sed 's/python3/python/') git mv "$f" "$fnew" done | |||
* | Rename Python 2 markdown files into 'pythonlegacy' | Simon Shine | 2020-02-12 | -562/+0 |
| | | | | | | | | | ``` for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do flegacy=$(echo "$f" | sed 's/python/pythonlegacy/') git mv "$f" "$flegacy" done ``` | |||
* | Type correction for the output of math.sqrt() propagated across versions and ↵ | Anindya Srivastava | 2019-02-06 | -1/+1 |
| | | | | languages | |||
* | Minor edit. | Jorge Puente Sarrín | 2015-10-28 | -1/+1 |
| | ||||
* | Spelling spanish version of Python guide. | Jorge Puente Sarrín | 2015-10-27 | -6/+6 |
| | ||||
* | Added missing section and fixes some typos | Fabio Souto | 2015-04-27 | -24/+96 |
| | ||||
* | typo fixes and version in docs | hirohope | 2014-05-18 | -2/+2 |
| | ||||
* | Updated translation filenames to prevent collisions | Adam | 2013-08-12 | -1/+1 |
| | ||||
* | Add python-es file | Camilo Garrido | 2013-08-07 | -0/+490 |