mirror of https://github.com/python/cpython
[3.13] gh-116622: Complete Android documentation (GH-124259) (#124395)
gh-116622: Complete Android documentation (GH-124259)
(cherry picked from commit e80dd3035f
)
Co-authored-by: Malcolm Smith <smith@chaquo.com>
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
Co-authored-by: T. Wouters <thomas@python.org>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
This commit is contained in:
parent
afeb7a4ff5
commit
9a60a9ddaf
|
@ -1,13 +1,9 @@
|
||||||
# Python for Android
|
# Python for Android
|
||||||
|
|
||||||
These instructions are only needed if you're planning to compile Python for
|
These instructions are only needed if you're planning to compile Python for
|
||||||
Android yourself. Most users should *not* need to do this. If you're looking to
|
Android yourself. Most users should *not* need to do this. Instead, use one of
|
||||||
use Python on Android, one of the following tools will provide a much more
|
the tools listed in `Doc/using/android.rst`, which will provide a much easier
|
||||||
approachable user experience:
|
experience.
|
||||||
|
|
||||||
* [Briefcase](https://briefcase.readthedocs.io), from the BeeWare project
|
|
||||||
* [Buildozer](https://buildozer.readthedocs.io), from the Kivy project
|
|
||||||
* [Chaquopy](https://chaquo.com/chaquopy/)
|
|
||||||
|
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
@ -87,10 +83,10 @@ and copy it over.
|
||||||
The test suite can usually be run on a device with 2 GB of RAM, though for some
|
The test suite can usually be run on a device with 2 GB of RAM, though for some
|
||||||
configurations or test orders you may need to increase this. As of Android
|
configurations or test orders you may need to increase this. As of Android
|
||||||
Studio Koala, 2 GB is the default for all emulators, although the user interface
|
Studio Koala, 2 GB is the default for all emulators, although the user interface
|
||||||
may indicate otherwise. The effective setting is `hw.ramSize` in
|
may indicate otherwise. Locate the emulator's directory under `~/.android/avd`,
|
||||||
~/.android/avd/*.avd/hardware-qemu.ini, whereas Android Studio displays the
|
and find `hw.ramSize` in both config.ini and hardware-qemu.ini. Either set these
|
||||||
value from config.ini. Changing the value in Android Studio will update both of
|
manually to the same value, or use the Android Studio Device Manager, which will
|
||||||
these files.
|
update both files.
|
||||||
|
|
||||||
Before running the test suite, follow the instructions in the previous section
|
Before running the test suite, follow the instructions in the previous section
|
||||||
to build the architecture you want to test. Then run the test script in one of
|
to build the architecture you want to test. Then run the test script in one of
|
||||||
|
@ -131,3 +127,8 @@ Every time you run `android.py test`, changes in pure-Python files in the
|
||||||
repository's `Lib` directory will be picked up immediately. Changes in C files,
|
repository's `Lib` directory will be picked up immediately. Changes in C files,
|
||||||
and architecture-specific files such as sysconfigdata, will not take effect
|
and architecture-specific files such as sysconfigdata, will not take effect
|
||||||
until you re-run `android.py make-host` or `build`.
|
until you re-run `android.py make-host` or `build`.
|
||||||
|
|
||||||
|
|
||||||
|
## Using in your own app
|
||||||
|
|
||||||
|
See `Doc/using/android.rst`.
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
.. include for modules that don't work on WASM or iOS
|
|
||||||
|
|
||||||
.. availability:: not WASI, not iOS.
|
|
||||||
|
|
||||||
This module does not work or is not available on WebAssembly platforms, or
|
|
||||||
on iOS. See :ref:`wasm-availability` for more information on WASM
|
|
||||||
availability; see :ref:`iOS-availability` for more information on iOS
|
|
||||||
availability.
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
.. include for modules that don't work on WASM or mobile platforms
|
||||||
|
|
||||||
|
.. availability:: not Android, not iOS, not WASI.
|
||||||
|
|
||||||
|
This module is not supported on :ref:`mobile platforms <mobile-availability>`
|
||||||
|
or :ref:`WebAssembly platforms <wasm-availability>`.
|
|
@ -21,7 +21,7 @@ for Windows, DOS, and possibly other systems as well. This extension module is
|
||||||
designed to match the API of ncurses, an open-source curses library hosted on
|
designed to match the API of ncurses, an open-source curses library hosted on
|
||||||
Linux and the BSD variants of Unix.
|
Linux and the BSD variants of Unix.
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,6 @@ slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There
|
||||||
is a `third party interface <https://www.jcea.es/programacion/pybsddb.htm>`_ to
|
is a `third party interface <https://www.jcea.es/programacion/pybsddb.htm>`_ to
|
||||||
the Oracle Berkeley DB.
|
the Oracle Berkeley DB.
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
|
||||||
|
|
||||||
.. exception:: error
|
.. exception:: error
|
||||||
|
|
||||||
A tuple containing the exceptions that can be raised by each of the supported
|
A tuple containing the exceptions that can be raised by each of the supported
|
||||||
|
@ -164,6 +162,8 @@ SQLite backend for the :mod:`dbm` module.
|
||||||
The files created by :mod:`dbm.sqlite3` can thus be opened by :mod:`sqlite3`,
|
The files created by :mod:`dbm.sqlite3` can thus be opened by :mod:`sqlite3`,
|
||||||
or any other SQLite browser, including the SQLite CLI.
|
or any other SQLite browser, including the SQLite CLI.
|
||||||
|
|
||||||
|
.. include:: ../includes/wasm-notavail.rst
|
||||||
|
|
||||||
.. function:: open(filename, /, flag="r", mode=0o666)
|
.. function:: open(filename, /, flag="r", mode=0o666)
|
||||||
|
|
||||||
Open an SQLite database.
|
Open an SQLite database.
|
||||||
|
@ -207,6 +207,8 @@ functionality like crash tolerance.
|
||||||
The file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are incompatible
|
The file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are incompatible
|
||||||
and can not be used interchangeably.
|
and can not be used interchangeably.
|
||||||
|
|
||||||
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
.. exception:: error
|
.. exception:: error
|
||||||
|
|
||||||
Raised on :mod:`dbm.gnu`-specific errors, such as I/O errors. :exc:`KeyError` is
|
Raised on :mod:`dbm.gnu`-specific errors, such as I/O errors. :exc:`KeyError` is
|
||||||
|
@ -326,6 +328,8 @@ This module can be used with the "classic" NDBM interface or the
|
||||||
when storing values larger than this limit. Reading such corrupted files can
|
when storing values larger than this limit. Reading such corrupted files can
|
||||||
result in a hard crash (segmentation fault).
|
result in a hard crash (segmentation fault).
|
||||||
|
|
||||||
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
.. exception:: error
|
.. exception:: error
|
||||||
|
|
||||||
Raised on :mod:`dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised
|
Raised on :mod:`dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised
|
||||||
|
|
|
@ -38,7 +38,7 @@ when creating a virtual environment) or after explicitly uninstalling
|
||||||
:pep:`453`: Explicit bootstrapping of pip in Python installations
|
:pep:`453`: Explicit bootstrapping of pip in Python installations
|
||||||
The original rationale and specification for this module.
|
The original rationale and specification for this module.
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
Command line interface
|
Command line interface
|
||||||
----------------------
|
----------------------
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
This module provides access to the Unix group database. It is available on all
|
This module provides access to the Unix group database. It is available on all
|
||||||
Unix versions.
|
Unix versions.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
Group database entries are reported as a tuple-like object, whose attributes
|
Group database entries are reported as a tuple-like object, whose attributes
|
||||||
correspond to the members of the ``group`` structure (Attribute field below, see
|
correspond to the members of the ``group`` structure (Attribute field below, see
|
||||||
|
|
|
@ -58,7 +58,7 @@ Notes on availability
|
||||||
operating system.
|
operating system.
|
||||||
|
|
||||||
* If not separately noted, all functions that claim "Availability: Unix" are
|
* If not separately noted, all functions that claim "Availability: Unix" are
|
||||||
supported on macOS and iOS, both of which build on a Unix core.
|
supported on macOS, iOS and Android, all of which build on a Unix core.
|
||||||
|
|
||||||
* If an availability note contains both a minimum Kernel version and a minimum
|
* If an availability note contains both a minimum Kernel version and a minimum
|
||||||
libc version, then both conditions must hold. For example a feature with note
|
libc version, then both conditions must hold. For example a feature with note
|
||||||
|
@ -120,43 +120,57 @@ DOM APIs as well as limited networking capabilities with JavaScript's
|
||||||
.. _Pyodide: https://pyodide.org/
|
.. _Pyodide: https://pyodide.org/
|
||||||
.. _PyScript: https://pyscript.net/
|
.. _PyScript: https://pyscript.net/
|
||||||
|
|
||||||
|
.. _mobile-availability:
|
||||||
.. _iOS-availability:
|
.. _iOS-availability:
|
||||||
|
|
||||||
iOS
|
Mobile platforms
|
||||||
---
|
----------------
|
||||||
|
|
||||||
iOS is, in most respects, a POSIX operating system. File I/O, socket handling,
|
Android and iOS are, in most respects, POSIX operating systems. File I/O, socket handling,
|
||||||
and threading all behave as they would on any POSIX operating system. However,
|
and threading all behave as they would on any POSIX operating system. However,
|
||||||
there are several major differences between iOS and other POSIX systems.
|
there are several major differences:
|
||||||
|
|
||||||
* iOS can only use Python in "embedded" mode. There is no Python REPL, and no
|
* Mobile platforms can only use Python in "embedded" mode. There is no Python
|
||||||
ability to execute binaries that are part of the normal Python developer
|
REPL, and no ability to use separate executables such as :program:`python` or
|
||||||
experience, such as :program:`pip`. To add Python code to your iOS app, you must use
|
:program:`pip`. To add Python code to your mobile app, you must use
|
||||||
the :ref:`Python embedding API <embedding>` to add a Python interpreter to an
|
the :ref:`Python embedding API <embedding>`. For more details, see
|
||||||
iOS app created with Xcode. See the :ref:`iOS usage guide <using-ios>` for
|
:ref:`using-android` and :ref:`using-ios`.
|
||||||
more details.
|
|
||||||
|
|
||||||
* An iOS app cannot use any form of subprocessing, background processing, or
|
* Subprocesses:
|
||||||
|
|
||||||
|
* On Android, creating subprocesses is possible but `officially unsupported
|
||||||
|
<https://issuetracker.google.com/issues/128554619#comment4>`__.
|
||||||
|
In particular, Android does not support any part of the System V IPC API,
|
||||||
|
so :mod:`multiprocessing` is not available.
|
||||||
|
|
||||||
|
* An iOS app cannot use any form of subprocessing, multiprocessing, or
|
||||||
inter-process communication. If an iOS app attempts to create a subprocess,
|
inter-process communication. If an iOS app attempts to create a subprocess,
|
||||||
the process creating the subprocess will either lock up, or crash. An iOS app
|
the process creating the subprocess will either lock up, or crash. An iOS app
|
||||||
has no visibility of other applications that are running, nor any ability to
|
has no visibility of other applications that are running, nor any ability to
|
||||||
communicate with other running applications, outside of the iOS-specific APIs
|
communicate with other running applications, outside of the iOS-specific APIs
|
||||||
that exist for this purpose.
|
that exist for this purpose.
|
||||||
|
|
||||||
* iOS apps have limited access to modify system resources (such as the system
|
* Mobile apps have limited access to modify system resources (such as the system
|
||||||
clock). These resources will often be *readable*, but attempts to modify
|
clock). These resources will often be *readable*, but attempts to modify
|
||||||
those resources will usually fail.
|
those resources will usually fail.
|
||||||
|
|
||||||
* iOS apps have a limited concept of console input and output. ``stdout`` and
|
* Console input and output:
|
||||||
|
|
||||||
|
* On Android, the native ``stdout`` and ``stderr`` are not connected to
|
||||||
|
anything, so Python installs its own streams which redirect messages to the
|
||||||
|
system log. These can be seen under the tags ``python.stdout`` and
|
||||||
|
``python.stderr`` respectively.
|
||||||
|
|
||||||
|
* iOS apps have a limited concept of console output. ``stdout`` and
|
||||||
``stderr`` *exist*, and content written to ``stdout`` and ``stderr`` will be
|
``stderr`` *exist*, and content written to ``stdout`` and ``stderr`` will be
|
||||||
visible in logs when running in Xcode, but this content *won't* be recorded
|
visible in logs when running in Xcode, but this content *won't* be recorded
|
||||||
in the system log. If a user who has installed your app provides their app
|
in the system log. If a user who has installed your app provides their app
|
||||||
logs as a diagnostic aid, they will not include any detail written to
|
logs as a diagnostic aid, they will not include any detail written to
|
||||||
``stdout`` or ``stderr``.
|
``stdout`` or ``stderr``.
|
||||||
|
|
||||||
iOS apps have no concept of ``stdin`` at all. While iOS apps can have a
|
* Mobile apps have no usable ``stdin`` at all. While apps can display an on-screen
|
||||||
keyboard, this is a software feature, not something that is attached to
|
keyboard, this is a software feature, not something that is attached to
|
||||||
``stdin``.
|
``stdin``.
|
||||||
|
|
||||||
As a result, Python library that involve console manipulation (such as
|
As a result, Python modules that involve console manipulation (such as
|
||||||
:mod:`curses` and :mod:`readline`) are not available on iOS.
|
:mod:`curses` and :mod:`readline`) are not available on mobile platforms.
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -34,8 +34,8 @@ Notes on the availability of these functions:
|
||||||
|
|
||||||
* On VxWorks, os.popen, os.fork, os.execv and os.spawn*p* are not supported.
|
* On VxWorks, os.popen, os.fork, os.execv and os.spawn*p* are not supported.
|
||||||
|
|
||||||
* On WebAssembly platforms, and on iOS, large parts of the :mod:`os` module are
|
* On WebAssembly platforms, Android and iOS, large parts of the :mod:`os` module are
|
||||||
not available or behave differently. API related to processes (e.g.
|
not available or behave differently. APIs related to processes (e.g.
|
||||||
:func:`~os.fork`, :func:`~os.execve`) and resources (e.g. :func:`~os.nice`)
|
:func:`~os.fork`, :func:`~os.execve`) and resources (e.g. :func:`~os.nice`)
|
||||||
are not available. Others like :func:`~os.getuid` and :func:`~os.getpid` are
|
are not available. Others like :func:`~os.getuid` and :func:`~os.getpid` are
|
||||||
emulated or stubs. WebAssembly platforms also lack support for signals (e.g.
|
emulated or stubs. WebAssembly platforms also lack support for signals (e.g.
|
||||||
|
@ -542,7 +542,7 @@ process and user.
|
||||||
the groups of which the specified username is a member, plus the specified
|
the groups of which the specified username is a member, plus the specified
|
||||||
group id.
|
group id.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
.. versionadded:: 3.2
|
.. versionadded:: 3.2
|
||||||
|
|
||||||
|
@ -576,21 +576,21 @@ process and user.
|
||||||
|
|
||||||
Set the current process's effective group id.
|
Set the current process's effective group id.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. function:: seteuid(euid, /)
|
.. function:: seteuid(euid, /)
|
||||||
|
|
||||||
Set the current process's effective user id.
|
Set the current process's effective user id.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. function:: setgid(gid, /)
|
.. function:: setgid(gid, /)
|
||||||
|
|
||||||
Set the current process' group id.
|
Set the current process' group id.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. function:: setgroups(groups, /)
|
.. function:: setgroups(groups, /)
|
||||||
|
@ -684,14 +684,14 @@ process and user.
|
||||||
|
|
||||||
Set the current process's real and effective group ids.
|
Set the current process's real and effective group ids.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. function:: setresgid(rgid, egid, sgid, /)
|
.. function:: setresgid(rgid, egid, sgid, /)
|
||||||
|
|
||||||
Set the current process's real, effective, and saved group ids.
|
Set the current process's real, effective, and saved group ids.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
.. versionadded:: 3.2
|
.. versionadded:: 3.2
|
||||||
|
|
||||||
|
@ -700,7 +700,7 @@ process and user.
|
||||||
|
|
||||||
Set the current process's real, effective, and saved user ids.
|
Set the current process's real, effective, and saved user ids.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
.. versionadded:: 3.2
|
.. versionadded:: 3.2
|
||||||
|
|
||||||
|
@ -709,7 +709,7 @@ process and user.
|
||||||
|
|
||||||
Set the current process's real and effective user ids.
|
Set the current process's real and effective user ids.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. function:: getsid(pid, /)
|
.. function:: getsid(pid, /)
|
||||||
|
@ -732,7 +732,7 @@ process and user.
|
||||||
|
|
||||||
Set the current process's user id.
|
Set the current process's user id.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
|
|
||||||
.. placed in this section since it relates to errno.... a little weak
|
.. placed in this section since it relates to errno.... a little weak
|
||||||
|
@ -2178,7 +2178,7 @@ features:
|
||||||
|
|
||||||
Change the root directory of the current process to *path*.
|
Change the root directory of the current process to *path*.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI.
|
.. availability:: Unix, not WASI, not Android.
|
||||||
|
|
||||||
.. versionchanged:: 3.6
|
.. versionchanged:: 3.6
|
||||||
Accepts a :term:`path-like object`.
|
Accepts a :term:`path-like object`.
|
||||||
|
@ -4284,7 +4284,7 @@ to be ignored.
|
||||||
|
|
||||||
.. audit-event:: os.exec path,args,env os.execl
|
.. audit-event:: os.exec path,args,env os.execl
|
||||||
|
|
||||||
.. availability:: Unix, Windows, not WASI, not iOS.
|
.. availability:: Unix, Windows, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionchanged:: 3.3
|
.. versionchanged:: 3.3
|
||||||
Added support for specifying *path* as an open file descriptor
|
Added support for specifying *path* as an open file descriptor
|
||||||
|
@ -4487,7 +4487,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
for technical details of why we're surfacing this longstanding
|
for technical details of why we're surfacing this longstanding
|
||||||
platform compatibility problem to developers.
|
platform compatibility problem to developers.
|
||||||
|
|
||||||
.. availability:: POSIX, not WASI, not iOS.
|
.. availability:: POSIX, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: forkpty()
|
.. function:: forkpty()
|
||||||
|
@ -4514,7 +4514,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
threads, this now raises a :exc:`DeprecationWarning`. See the
|
threads, this now raises a :exc:`DeprecationWarning`. See the
|
||||||
longer explanation on :func:`os.fork`.
|
longer explanation on :func:`os.fork`.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: kill(pid, sig, /)
|
.. function:: kill(pid, sig, /)
|
||||||
|
@ -4623,7 +4623,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
documentation for more powerful ways to manage and communicate with
|
documentation for more powerful ways to manage and communicate with
|
||||||
subprocesses.
|
subprocesses.
|
||||||
|
|
||||||
.. availability:: not WASI, not iOS.
|
.. availability:: not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
The :ref:`Python UTF-8 Mode <utf8-mode>` affects encodings used
|
The :ref:`Python UTF-8 Mode <utf8-mode>` affects encodings used
|
||||||
|
@ -4731,7 +4731,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
``os.POSIX_SPAWN_CLOSEFROM`` is available on platforms where
|
``os.POSIX_SPAWN_CLOSEFROM`` is available on platforms where
|
||||||
:c:func:`!posix_spawn_file_actions_addclosefrom_np` exists.
|
:c:func:`!posix_spawn_file_actions_addclosefrom_np` exists.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. function:: posix_spawnp(path, argv, env, *, file_actions=None, \
|
.. function:: posix_spawnp(path, argv, env, *, file_actions=None, \
|
||||||
setpgroup=None, resetids=False, setsid=False, setsigmask=(), \
|
setpgroup=None, resetids=False, setsid=False, setsigmask=(), \
|
||||||
|
@ -4747,7 +4747,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
.. versionadded:: 3.8
|
.. versionadded:: 3.8
|
||||||
|
|
||||||
.. availability:: POSIX, not WASI, not iOS.
|
.. availability:: POSIX, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
See :func:`posix_spawn` documentation.
|
See :func:`posix_spawn` documentation.
|
||||||
|
|
||||||
|
@ -4780,7 +4780,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
There is no way to unregister a function.
|
There is no way to unregister a function.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.7
|
.. versionadded:: 3.7
|
||||||
|
|
||||||
|
@ -4849,7 +4849,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
.. audit-event:: os.spawn mode,path,args,env os.spawnl
|
.. audit-event:: os.spawn mode,path,args,env os.spawnl
|
||||||
|
|
||||||
.. availability:: Unix, Windows, not WASI, not iOS.
|
.. availability:: Unix, Windows, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
:func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
|
:func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
|
||||||
and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|
and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
|
||||||
|
@ -4973,7 +4973,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
.. audit-event:: os.system command os.system
|
.. audit-event:: os.system command os.system
|
||||||
|
|
||||||
.. availability:: Unix, Windows, not WASI, not iOS.
|
.. availability:: Unix, Windows, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: times()
|
.. function:: times()
|
||||||
|
@ -5017,7 +5017,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
||||||
exit code.
|
exit code.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
|
@ -5051,7 +5051,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
Otherwise, if there are no matching children
|
Otherwise, if there are no matching children
|
||||||
that could be waited for, :exc:`ChildProcessError` is raised.
|
that could be waited for, :exc:`ChildProcessError` is raised.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
@ -5092,7 +5092,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
||||||
exit code.
|
exit code.
|
||||||
|
|
||||||
.. availability:: Unix, Windows, not WASI, not iOS.
|
.. availability:: Unix, Windows, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionchanged:: 3.5
|
.. versionchanged:: 3.5
|
||||||
If the system call is interrupted and the signal handler does not raise an
|
If the system call is interrupted and the signal handler does not raise an
|
||||||
|
@ -5112,7 +5112,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
||||||
exitcode.
|
exitcode.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: wait4(pid, options)
|
.. function:: wait4(pid, options)
|
||||||
|
@ -5126,7 +5126,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
:func:`waitstatus_to_exitcode` can be used to convert the exit status into an
|
||||||
exitcode.
|
exitcode.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. data:: P_PID
|
.. data:: P_PID
|
||||||
|
@ -5143,7 +5143,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
* :data:`!P_PIDFD` - wait for the child identified by the file descriptor
|
* :data:`!P_PIDFD` - wait for the child identified by the file descriptor
|
||||||
*id* (a process file descriptor created with :func:`pidfd_open`).
|
*id* (a process file descriptor created with :func:`pidfd_open`).
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. note:: :data:`!P_PIDFD` is only available on Linux >= 5.4.
|
.. note:: :data:`!P_PIDFD` is only available on Linux >= 5.4.
|
||||||
|
|
||||||
|
@ -5158,7 +5158,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitid` causes child processes to be reported if they have been
|
:func:`waitid` causes child processes to be reported if they have been
|
||||||
continued from a job control stop since they were last reported.
|
continued from a job control stop since they were last reported.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. data:: WEXITED
|
.. data:: WEXITED
|
||||||
|
@ -5169,7 +5169,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
The other ``wait*`` functions always report children that have terminated,
|
The other ``wait*`` functions always report children that have terminated,
|
||||||
so this option is not available for them.
|
so this option is not available for them.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
@ -5181,7 +5181,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
This option is not available for the other ``wait*`` functions.
|
This option is not available for the other ``wait*`` functions.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
@ -5194,7 +5194,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
This option is not available for :func:`waitid`.
|
This option is not available for :func:`waitid`.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. data:: WNOHANG
|
.. data:: WNOHANG
|
||||||
|
@ -5203,7 +5203,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`waitid` to return right away if no child process status is available
|
:func:`waitid` to return right away if no child process status is available
|
||||||
immediately.
|
immediately.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. data:: WNOWAIT
|
.. data:: WNOWAIT
|
||||||
|
@ -5213,7 +5213,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
|
|
||||||
This option is not available for the other ``wait*`` functions.
|
This option is not available for the other ``wait*`` functions.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. data:: CLD_EXITED
|
.. data:: CLD_EXITED
|
||||||
|
@ -5226,7 +5226,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
These are the possible values for :attr:`!si_code` in the result returned by
|
These are the possible values for :attr:`!si_code` in the result returned by
|
||||||
:func:`waitid`.
|
:func:`waitid`.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
@ -5261,7 +5261,7 @@ written in Python, such as a mail server's external command delivery program.
|
||||||
:func:`WIFEXITED`, :func:`WEXITSTATUS`, :func:`WIFSIGNALED`,
|
:func:`WIFEXITED`, :func:`WEXITSTATUS`, :func:`WIFSIGNALED`,
|
||||||
:func:`WTERMSIG`, :func:`WIFSTOPPED`, :func:`WSTOPSIG` functions.
|
:func:`WTERMSIG`, :func:`WIFSTOPPED`, :func:`WSTOPSIG` functions.
|
||||||
|
|
||||||
.. availability:: Unix, Windows, not WASI, not iOS.
|
.. availability:: Unix, Windows, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.9
|
.. versionadded:: 3.9
|
||||||
|
|
||||||
|
@ -5277,7 +5277,7 @@ used to determine the disposition of a process.
|
||||||
|
|
||||||
This function should be employed only if :func:`WIFSIGNALED` is true.
|
This function should be employed only if :func:`WIFSIGNALED` is true.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WIFCONTINUED(status)
|
.. function:: WIFCONTINUED(status)
|
||||||
|
@ -5288,7 +5288,7 @@ used to determine the disposition of a process.
|
||||||
|
|
||||||
See :data:`WCONTINUED` option.
|
See :data:`WCONTINUED` option.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WIFSTOPPED(status)
|
.. function:: WIFSTOPPED(status)
|
||||||
|
@ -5300,14 +5300,14 @@ used to determine the disposition of a process.
|
||||||
done using :data:`WUNTRACED` option or when the process is being traced (see
|
done using :data:`WUNTRACED` option or when the process is being traced (see
|
||||||
:manpage:`ptrace(2)`).
|
:manpage:`ptrace(2)`).
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
.. function:: WIFSIGNALED(status)
|
.. function:: WIFSIGNALED(status)
|
||||||
|
|
||||||
Return ``True`` if the process was terminated by a signal, otherwise return
|
Return ``True`` if the process was terminated by a signal, otherwise return
|
||||||
``False``.
|
``False``.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WIFEXITED(status)
|
.. function:: WIFEXITED(status)
|
||||||
|
@ -5316,7 +5316,7 @@ used to determine the disposition of a process.
|
||||||
by calling ``exit()`` or ``_exit()``, or by returning from ``main()``;
|
by calling ``exit()`` or ``_exit()``, or by returning from ``main()``;
|
||||||
otherwise return ``False``.
|
otherwise return ``False``.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WEXITSTATUS(status)
|
.. function:: WEXITSTATUS(status)
|
||||||
|
@ -5325,7 +5325,7 @@ used to determine the disposition of a process.
|
||||||
|
|
||||||
This function should be employed only if :func:`WIFEXITED` is true.
|
This function should be employed only if :func:`WIFEXITED` is true.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WSTOPSIG(status)
|
.. function:: WSTOPSIG(status)
|
||||||
|
@ -5334,7 +5334,7 @@ used to determine the disposition of a process.
|
||||||
|
|
||||||
This function should be employed only if :func:`WIFSTOPPED` is true.
|
This function should be employed only if :func:`WIFSTOPPED` is true.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
.. function:: WTERMSIG(status)
|
.. function:: WTERMSIG(status)
|
||||||
|
@ -5343,7 +5343,7 @@ used to determine the disposition of a process.
|
||||||
|
|
||||||
This function should be employed only if :func:`WIFSIGNALED` is true.
|
This function should be employed only if :func:`WIFSIGNALED` is true.
|
||||||
|
|
||||||
.. availability:: Unix, not WASI, not iOS.
|
.. availability:: Unix, not WASI, not Android, not iOS.
|
||||||
|
|
||||||
|
|
||||||
Interface to the scheduler
|
Interface to the scheduler
|
||||||
|
|
|
@ -24,7 +24,7 @@ in the GNU Readline manual for information about the format and
|
||||||
allowable constructs of that file, and the capabilities of the
|
allowable constructs of that file, and the capabilities of the
|
||||||
Readline library in general.
|
Readline library in general.
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|
|
@ -1272,7 +1272,7 @@ The :mod:`socket` module also offers various network-related services:
|
||||||
|
|
||||||
.. audit-event:: socket.sethostname name socket.sethostname
|
.. audit-event:: socket.sethostname name socket.sethostname
|
||||||
|
|
||||||
.. availability:: Unix.
|
.. availability:: Unix, not Android.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ modules and functions can be found in the following sections.
|
||||||
|
|
||||||
:pep:`324` -- PEP proposing the subprocess module
|
:pep:`324` -- PEP proposing the subprocess module
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
Using the :mod:`subprocess` Module
|
Using the :mod:`subprocess` Module
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
|
|
@ -193,7 +193,7 @@ Functions
|
||||||
Use :func:`clock_settime_ns` to avoid the precision loss caused by the
|
Use :func:`clock_settime_ns` to avoid the precision loss caused by the
|
||||||
:class:`float` type.
|
:class:`float` type.
|
||||||
|
|
||||||
.. availability:: Unix.
|
.. availability:: Unix, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ Functions
|
||||||
|
|
||||||
Similar to :func:`clock_settime` but set time with nanoseconds.
|
Similar to :func:`clock_settime` but set time with nanoseconds.
|
||||||
|
|
||||||
.. availability:: Unix.
|
.. availability:: Unix, not Android, not iOS.
|
||||||
|
|
||||||
.. versionadded:: 3.7
|
.. versionadded:: 3.7
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ See :pep:`405` for more background on Python virtual environments.
|
||||||
`Python Packaging User Guide: Creating and using virtual environments
|
`Python Packaging User Guide: Creating and using virtual environments
|
||||||
<https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments>`__
|
<https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#create-and-use-virtual-environments>`__
|
||||||
|
|
||||||
.. include:: ../includes/wasm-ios-notavail.rst
|
.. include:: ../includes/wasm-mobile-notavail.rst
|
||||||
|
|
||||||
Creating virtual environments
|
Creating virtual environments
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
|
@ -51,7 +51,7 @@ The options are, naturally, mutually exclusive. Usage example::
|
||||||
|
|
||||||
python -m webbrowser -t "https://www.python.org"
|
python -m webbrowser -t "https://www.python.org"
|
||||||
|
|
||||||
.. include:: ../includes/wasm-notavail.rst
|
.. availability:: not WASI, not Android.
|
||||||
|
|
||||||
The following exception is defined:
|
The following exception is defined:
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
.. _using-android:
|
||||||
|
|
||||||
|
=======================
|
||||||
|
Using Python on Android
|
||||||
|
=======================
|
||||||
|
|
||||||
|
Python on Android is unlike Python on desktop platforms. On a desktop platform,
|
||||||
|
Python is generally installed as a system resource that can be used by any user
|
||||||
|
of that computer. Users then interact with Python by running a :program:`python`
|
||||||
|
executable and entering commands at an interactive prompt, or by running a
|
||||||
|
Python script.
|
||||||
|
|
||||||
|
On Android, there is no concept of installing as a system resource. The only unit
|
||||||
|
of software distribution is an "app". There is also no console where you could
|
||||||
|
run a :program:`python` executable, or interact with a Python REPL.
|
||||||
|
|
||||||
|
As a result, the only way you can use Python on Android is in embedded mode – that
|
||||||
|
is, by writing a native Android application, embedding a Python interpreter
|
||||||
|
using ``libpython``, and invoking Python code using the :ref:`Python embedding
|
||||||
|
API <embedding>`. The full Python interpreter, the standard library, and all
|
||||||
|
your Python code is then packaged into your app for its own private use.
|
||||||
|
|
||||||
|
The Python standard library has some notable omissions and restrictions on
|
||||||
|
Android. See the :ref:`API availability guide <mobile-availability>` for
|
||||||
|
details.
|
||||||
|
|
||||||
|
Adding Python to an Android app
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
These instructions are only needed if you're planning to compile Python for
|
||||||
|
Android yourself. Most users should *not* need to do this. Instead, use one of
|
||||||
|
the following tools, which will provide a much easier experience:
|
||||||
|
|
||||||
|
* `Briefcase <https://briefcase.readthedocs.io>`__, from the BeeWare project
|
||||||
|
* `Buildozer <https://buildozer.readthedocs.io>`__, from the Kivy project
|
||||||
|
* `Chaquopy <https://chaquo.com/chaquopy>`__
|
||||||
|
* `pyqtdeploy <https://www.riverbankcomputing.com/static/Docs/pyqtdeploy/>`__
|
||||||
|
* `Termux <https://termux.dev/en/>`__
|
||||||
|
|
||||||
|
If you're sure you want to do all of this manually, read on. You can use the
|
||||||
|
:source:`testbed app <Android/testbed>` as a guide; each step below contains a
|
||||||
|
link to the relevant file.
|
||||||
|
|
||||||
|
* Build Python by following the instructions in :source:`Android/README.md`.
|
||||||
|
|
||||||
|
* Add code to your :source:`build.gradle <Android/testbed/app/build.gradle.kts>`
|
||||||
|
file to copy the following items into your project. All except your own Python
|
||||||
|
code can be copied from ``cross-build/HOST/prefix/lib``:
|
||||||
|
|
||||||
|
* In your JNI libraries:
|
||||||
|
|
||||||
|
* ``libpython*.*.so``
|
||||||
|
* ``lib*_python.so`` (external libraries such as OpenSSL)
|
||||||
|
|
||||||
|
* In your assets:
|
||||||
|
|
||||||
|
* ``python*.*`` (the Python standard library)
|
||||||
|
* ``python*.*/site-packages`` (your own Python code)
|
||||||
|
|
||||||
|
* Add code to your app to :source:`extract the assets to the filesystem
|
||||||
|
<Android/testbed/app/src/main/java/org/python/testbed/MainActivity.kt>`.
|
||||||
|
|
||||||
|
* Add code to your app to :source:`start Python in embedded mode
|
||||||
|
<Android/testbed/app/src/main/c/main_activity.c>`. This will need to be C code
|
||||||
|
called via JNI.
|
|
@ -12,11 +12,13 @@ interpreter and things that make working with Python easier.
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:numbered:
|
:numbered:
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
cmdline.rst
|
cmdline.rst
|
||||||
unix.rst
|
unix.rst
|
||||||
configure.rst
|
configure.rst
|
||||||
windows.rst
|
windows.rst
|
||||||
mac.rst
|
mac.rst
|
||||||
|
android.rst
|
||||||
ios.rst
|
ios.rst
|
||||||
editors.rst
|
editors.rst
|
||||||
|
|
|
@ -63,7 +63,7 @@ Standard library availability
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
The Python standard library has some notable omissions and restrictions on
|
The Python standard library has some notable omissions and restrictions on
|
||||||
iOS. See the :ref:`API availability guide for iOS <iOS-availability>` for
|
iOS. See the :ref:`API availability guide for iOS <mobile-availability>` for
|
||||||
details.
|
details.
|
||||||
|
|
||||||
Binary extension modules
|
Binary extension modules
|
||||||
|
|
|
@ -171,7 +171,8 @@ Platform support:
|
||||||
|
|
||||||
* :pep:`730`: Apple's iOS is now an :ref:`officially supported platform
|
* :pep:`730`: Apple's iOS is now an :ref:`officially supported platform
|
||||||
<whatsnew313-platform-support>`, at :pep:`tier 3 <11#tier-3>`.
|
<whatsnew313-platform-support>`, at :pep:`tier 3 <11#tier-3>`.
|
||||||
Official Android support (:pep:`738`) is also in the works.
|
* :pep:`738`: Android is now an :ref:`officially supported platform
|
||||||
|
<whatsnew313-platform-support>`, at :pep:`tier 3 <11#tier-3>`.
|
||||||
* ``wasm32-wasi`` is now supported as a :pep:`tier 2 <11#tier-2>` platform.
|
* ``wasm32-wasi`` is now supported as a :pep:`tier 2 <11#tier-2>` platform.
|
||||||
* ``wasm32-emscripten`` is no longer an officially supported platform.
|
* ``wasm32-emscripten`` is no longer an officially supported platform.
|
||||||
|
|
||||||
|
@ -479,8 +480,10 @@ is not a tier 3 supported platform, but will have best-effort support.
|
||||||
(PEP written and implementation contributed by Russell Keith-Magee in
|
(PEP written and implementation contributed by Russell Keith-Magee in
|
||||||
:gh:`114099`.)
|
:gh:`114099`.)
|
||||||
|
|
||||||
:pep:`738`: Android support is being actively worked on,
|
:pep:`738`: Android is now a :pep:`11` supported platform, with the
|
||||||
but the platform is not yet officially supported.
|
``aarch64-linux-android`` and ``x86_64-linux-android`` targets at tier 3.
|
||||||
|
The 32-bit targets ``arm-linux-androideabi`` and ``i686-linux-android``
|
||||||
|
are not tier 3 supported platforms, but will have best-effort support.
|
||||||
(PEP written and implementation contributed by Malcolm Smith in
|
(PEP written and implementation contributed by Malcolm Smith in
|
||||||
:gh:`116622`.)
|
:gh:`116622`.)
|
||||||
|
|
||||||
|
@ -2515,6 +2518,11 @@ Build Changes
|
||||||
(:ref:`PEP 730 <whatsnew313-platform-support>` written
|
(:ref:`PEP 730 <whatsnew313-platform-support>` written
|
||||||
and implementation contributed by Russell Keith-Magee in :gh:`114099`.)
|
and implementation contributed by Russell Keith-Magee in :gh:`114099`.)
|
||||||
|
|
||||||
|
* ``aarch64-linux-android`` and ``x86_64-linux-android`` are both
|
||||||
|
now :pep:`11` tier 3 platforms.
|
||||||
|
(:ref:`PEP 738 <whatsnew313-platform-support>` written
|
||||||
|
and implementation contributed by Malcolm Smith in :gh:`116622`.)
|
||||||
|
|
||||||
* ``wasm32-wasi`` is now a :pep:`11` tier 2 platform.
|
* ``wasm32-wasi`` is now a :pep:`11` tier 2 platform.
|
||||||
(Contributed by Brett Cannon in :gh:`115192`.)
|
(Contributed by Brett Cannon in :gh:`115192`.)
|
||||||
|
|
||||||
|
|
|
@ -1742,6 +1742,7 @@ Christopher Smith
|
||||||
Eric V. Smith
|
Eric V. Smith
|
||||||
Ethan H. Smith
|
Ethan H. Smith
|
||||||
Gregory P. Smith
|
Gregory P. Smith
|
||||||
|
Malcolm Smith
|
||||||
Mark Smith
|
Mark Smith
|
||||||
Nathaniel J. Smith
|
Nathaniel J. Smith
|
||||||
Roy Smith
|
Roy Smith
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Add an Android platform guide, and flag modules not available on Android.
|
Loading…
Reference in New Issue