Revert "python3: now points to python38"

This is going to require more work.

This reverts commit 2dc4ab36772dfaf124af4d90e99c68038f46baa0.

+2 -2
+1 -1
doc/languages-frameworks/python.section.md
··· 499 499 Versions 2.7, 3.5, 3.6, 3.7 and 3.8 of the CPython interpreter are available as 500 500 respectively `python27`, `python35`, `python36`, `python37` and `python38`. The aliases 501 501 `python2` and `python3` correspond to respectively `python27` and 502 - `python38`. The default interpreter, `python`, maps to `python2`. The PyPy 502 + `python37`. The default interpreter, `python`, maps to `python2`. The PyPy 503 503 interpreters compatible with Python 2.7 and 3 are available as `pypy27` and 504 504 `pypy3`, with aliases `pypy2` mapping to `pypy27` and `pypy` mapping to 505 505 `pypy2`. The Nix expressions for the interpreters can be
+1 -1
pkgs/top-level/all-packages.nix
··· 9267 9267 # When switching these sets, please update docs at ../../doc/languages-frameworks/python.md 9268 9268 python = python2; 9269 9269 python2 = python27; 9270 - python3 = python38; 9270 + python3 = python37; 9271 9271 pypy = pypy2; 9272 9272 pypy2 = pypy27; 9273 9273 pypy3 = pypy36;