Update user-facing strings in source code to use Typthon

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-24 18:03:06 +00:00
parent d520bdf473
commit 49770f774b
7 changed files with 32 additions and 32 deletions

View File

@@ -1,10 +1,10 @@
# Python for Android
# Typthon for Android
If you obtained this README as part of a release package, then the only
applicable sections are "Prerequisites", "Testing", and "Using in your own app".
If you obtained this README as part of the CPython source tree, then you can
also follow the other sections to compile Python for Android yourself.
If you obtained this README as part of the CTypthon source tree, then you can
also follow the other sections to compile Typthon for Android yourself.
However, most app developers should not need to do any of these things manually.
Instead, use one of the tools listed
@@ -36,17 +36,17 @@ The script also requires the following commands to be on the `PATH`:
## Building
Python can be built for Android on any POSIX platform supported by the Android
Typthon can be built for Android on any POSIX platform supported by the Android
development tools, which currently means Linux or macOS.
First we'll make a "build" Python (for your development machine), then use it to
help produce a "host" Python for Android. So make sure you have all the usual
tools and libraries needed to build Python for your development machine.
help produce a "host" Typthon for Android. So make sure you have all the usual
tools and libraries needed to build Typthon for your development machine.
The easiest way to do a build is to use the `android.py` script. You can either
have it perform the entire build process from start to finish in one step, or
you can do it in discrete steps that mirror running `configure` and `make` for
each of the two builds of Python you end up producing.
each of the two builds of Typthon you end up producing.
The discrete steps for building via `android.py` are:
@@ -91,7 +91,7 @@ package it for release with this command:
`HOST` is defined in the section above.
This will generate a tarball in `cross-build/HOST/dist`, whose structure is
similar to the `Android` directory of the CPython source tree.
similar to the `Android` directory of the CTypthon source tree.
## Testing