Simon Shine
8f5fac9895
Python 3: 'language: Python'
...
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/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
efe00fd06e
Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'
...
The list of references is exhausted by running 'ack docs/python'.
2020-02-12 05:03:08 +01:00
Simon Shine
a3b0585374
Rename Python 3 markdown files into 'python'
...
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Simon Shine
1adab9bc3f
Rename Python 2 markdown files into 'pythonlegacy'
...
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
2020-02-12 04:53:08 +01:00
Rakasch
c0c2272be0
Kap. 5+6 aktualisiert, Kap 6.1, 6.2, 7 hinzugefügt
...
Kapitel 6.1, 6.2 und 7 aus der englischen Version übernommen.
Kapitel 5 und 6 getauscht, um der englischen Version zu entsprechen.
Texte der Kapitel 5 und 6 Kapitel um fehlende Teile erweitert.
2019-04-06 20:18:14 +02:00
Anindya Srivastava
9b5b5f6d31
Type correction for the output of math.sqrt() propagated across versions and languages
2019-02-06 07:31:34 +05:30
Wincent Balin
79170764a1
Update python-de.html.markdown
...
Fixed typos.
2015-03-03 12:20:57 +01:00
Adam
3cf89d5146
Updated new contributions
2013-09-08 22:05:15 -07:00
rduerig
081564a08a
improved python german a little bit
2013-08-18 23:39:09 +02:00
Adam
f1692b1576
Updated header matter in python-de
2013-08-17 09:44:28 -07:00
Adam
abf527143a
Changed python-de to utf-8
2013-08-17 09:44:05 -07:00
kultprok
e875c3fff1
added first draft of german translation for python
2013-08-17 12:40:17 +02:00