Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Update Russian translation | Anton | 2020-09-02 | -278/+685 |
| | | | | Add docs from latest English version | |||
* | Fix error in output description | Roman Polomoshnov | 2020-08-12 | -1/+1 |
| | ||||
* | 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/+651 |
| | | | | | | | | ``` 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 | -643/+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 | |||
* | Edit descriptions for function setdefault. | Nasgul | 2015-10-29 | -1/+1 |
| | | | Edit descriptions for function setdefault. | |||
* | Update python-ru.html.markdown | Chashmeet Singh | 2015-10-06 | -1/+1 |
| | ||||
* | String to list characters | Chashmeet Singh | 2015-10-05 | -10/+4 |
| | ||||
* | Update python-ru.html.markdown | Chashmeet Singh | 2015-10-05 | -4/+4 |
| | ||||
* | Update python-ru.html.markdown | Chashmeet Singh | 2015-10-05 | -0/+9 |
| | ||||
* | [Python/ru] Fixing Russian translation for both Python tutorials | Andre Polykanine A.K.A. Menelion Elensúlë | 2015-01-24 | -34/+75 |
| | ||||
* | [python-ru] Updating Russian translation of the Python 2.x tutorial | Andre Polykanine A.K.A. Menelion Elensúlë | 2014-09-09 | -80/+186 |
| | ||||
* | Update python-ru.html.markdown | Rogaboru Kujimoshi | 2013-12-19 | -1/+1 |
| | | | Fixed comment on line 39 | |||
* | Fixed a bunch of headers | Adam | 2013-09-13 | -0/+2 |
| | ||||
* | Typos and stylistic fixes | Yury | 2013-08-20 | -52/+53 |
| | ||||
* | Edits | Adam | 2013-08-16 | -2/+6 |
| | ||||
* | Russian translate for python | Yury | 2013-08-15 | -0/+486 |