| Commit message (Collapse) | Author | Age | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/' {} \;
```
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/' {} \;
```
|
|
|
|
|
|
|
|
| |
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
|
|
|
|
|
|
|
|
|
| |
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
|
|
|
|
| |
languages
|
| |
|
|
|
| |
Fix typo
|
| |
|
|
|
| |
Add Link to Python3 English article.
|
| |
|
|
|
|
|
| |
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)
|
| |
|
| |
|
| |
|
|
|