| Commit message (Collapse) | Author | Age | Lines |
... | |
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
[Python] Make Python 3 default
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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/' {} \;
```
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Before renaming, all Python 2 filenames were 'learnpython-*.py'.
This commit renames them to 'learnpythonlegacy-*.py'.
To verify that the filenames were named consistently across
translations prior to this commit, and to change this:
```
find . -name "pythonlegacy*.markdown" -exec ack filename: {} \;
find . -name "pythonlegacy*.markdown" -exec \
sed -i 's/^filename: learnpython/filename: learnpythonlegacy/' {} \;
```
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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/' {} \;
```
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Instead of listing 'language: python' for Python 2, use
language: Python 2 (legacy)
```
find . -iname "*pythonlegacy*" -exec \
sed -i 's/^language: .*/language: Python 2 (legacy)/' {} \;
```
|
| | | | |
| | | | |
| | | | |
| | | | | |
The list of references is exhausted by running 'ack docs/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
```
|
|\ \ \ \
| | |/ /
| |/| | |
|
| |\ \ \
| | |/ /
| |/| | |
[clojure/es] Update translation
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[sql/es] Translate SQL to Spanish
|
| | | |
| | | |
| | | | |
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
|
| | | |
| | | |
| | | | |
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
|
| | | |
| | | |
| | | | |
Co-Authored-By: Antonio Hernández Blas <1096022+nihilismus@users.noreply.github.com>
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
[D/de-de] Fixed some typos in translation
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[go/en] Add value/reference semantics information for arr/slices.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
[go/en] Clarify safety of taking local variable address.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Add lang code, fix #3850
|
|/ / / / |
|
|\ \ \ \
| |/ / /
|/| | | |
[rust/en] Small stylistic fix.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Fixed prototype function return value comment in javascript-ru
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
[MIPS Assembly/en] fixing line length
|
|/ / /
| | |
| | | |
Some lines were greater than 80 characters long, which causes some unaligned wrapping of comments on the website. This PR reduces all lines' length to a maximum of 80.
|
|\ \ \
| |/ /
|/| | |
[dart/en] Update Guide and add more features
|
| | |
| | |
| | | |
Fix spacing
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
[de-de/c] Translated C to German (See Issue #3592)
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Resource => Ressource
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
I have changed all occurences of 'ss' to 'ß' according to duden.de
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|