Skip to content
Merged
Prev Previous commit
Next Next commit
Resolve a class reference failure.
  • Loading branch information
freakboy3742 committed Mar 20, 2024
commit b5d8aa2117b082d05239e962315885a97f1e4058
8 changes: 4 additions & 4 deletions Doc/using/iOS.rst
Comment thread
hugovk marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ the path ``Frameworks/foo.bar._whiz/foo.bar._whiz``. The framework would also
contain ``Frameworks/foo.bar._whiz.framework/foo.bar._whiz.origin``, containing
the path to the ``.fwork`` file.

When running on iOS, the Python interpreter will install a :class:`loader
<importlib.AppleFrameworkLoader>` that is able to read and import ``.fwork``
files. Once imported, the ``__file__`` attribute of the binary module will
report as the location of the ``.fwork`` file. However, the
When running on iOS, the Python interpreter will install an
:class:`~importlib.machinery.AppleFrameworkLoader` that is able to read and
import ``.fwork`` files. Once imported, the ``__file__`` attribute of the
binary module will report as the location of the ``.fwork`` file. However, the
:class:`~importlib.machinery.ModuleSpec` for the loaded module will report the
``origin`` as the location of the binary in the framework folder.

Expand Down