summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/python-fr.html.markdown
Commit message (Collapse)AuthorAgeLines
* [python/*] proofread en and ru and all linksBoris Verkhovskiy2024-04-26-2/+1
|
* [python/*] remove feedback email requestBoris Verkhovskiy2024-04-07-2/+0
|
* Remove leading and trailing empty lines in code blocksBoris Verkhovskiy2024-04-06-1/+0
|
* Python 3: Use 'filename: learnpython*.py' (no '3')Simon Shine2020-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 Shine2020-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 Shine2020-02-12-0/+732
| | | | | | | | ``` 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 Shine2020-02-12-488/+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 Srivastava2019-02-06-1/+1
| | | | languages
* [python/fr] Fix python3 linkpayet-s2015-10-21-2/+1
|
* Update python-fr.html.markdownFlorent Espanet2015-10-06-1/+1
| | | Fix typo
* typoMatthias Bussonnier2015-10-03-1/+1
|
* Update Python-fr.html.markdown Matthias Bussonnier2015-10-03-1/+1
| | | Add Link to Python3 English article.
* Escaped a quoteArnaud2014-04-15-1/+1
|
* French translation typo in comments for slice syntax with omitted indexesC-Duv2013-10-11-2/+2
| | | | | Translation typo in comments for slice syntax with omitted indexes: "Omit the beginning" meant omit the beginning *of the list* (not the beginning of the range) "Omit the end" meant omit the end *of the list* (not the end of the range)
* Fixed up so it buildsAdam2013-09-08-3/+5
|
* Updated new contributionsAdam2013-09-08-7/+3
|
* typo corrections, thanks to Nami-Doc for re-readingSyl Zys2013-09-08-33/+33
|
* Added Python French translationSyl Zys2013-09-08-0/+491