bpo-40280: Emscripten systems use .wasm suffix by default (GH-29842)

This commit is contained in:
Christian Heimes 2021-11-29 17:01:55 +02:00 committed by GitHub
parent c1dec9540a
commit 6ac3c8a314
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 16 deletions

View file

@ -53,7 +53,11 @@ General Options
Set the Python executable suffix to *SUFFIX*.
The default suffix is ``.exe`` on Windows and macOS (``python.exe``
executable), and an empty string on other platforms (``python`` executable).
executable), ``.wasm`` on Emscripten (``python.wasm`` executable), and
an empty string on other platforms (``python`` executable).
.. versionchanged:: 3.11
The default suffix on Emscripten platform is ``.wasm``.
.. cmdoption:: --with-tzpath=<list of absolute paths separated by pathsep>