Typos in the Readme.
This commit is contained in:
parent
0e03ef38e0
commit
8ea931cf8f
10
README.rst
10
README.rst
|
@ -4,7 +4,8 @@ Synopsis
|
||||||
**Polyloader** is a python module that enables the discovery and loading
|
**Polyloader** is a python module that enables the discovery and loading
|
||||||
of heterogenous source code packages. This discovery and loading is
|
of heterogenous source code packages. This discovery and loading is
|
||||||
critical to the functioning of other programming languages that use the
|
critical to the functioning of other programming languages that use the
|
||||||
Python AST and Python VM, languages such as Hy, Doge, and Mochi.
|
Python AST and Python interpreter, languages such as Hy, Doge, and
|
||||||
|
Mochi.
|
||||||
|
|
||||||
Problem Statement
|
Problem Statement
|
||||||
-----------------
|
-----------------
|
||||||
|
@ -30,12 +31,13 @@ features such as **pkgutil.iter_modules** do not work with heterogenous
|
||||||
source code, which in turn means that one cannot write, for one
|
source code, which in turn means that one cannot write, for one
|
||||||
important example, Django management commands in an alternative syntax.
|
important example, Django management commands in an alternative syntax.
|
||||||
|
|
||||||
**polyloader** is a python module that intercepts calls to the default
|
**polyloader** is a Python module that intercepts calls to the default
|
||||||
finder, loader, and package module iterator, and if the path resolves to
|
finder, loader, and package module iterator, and if the path resolves to
|
||||||
an alternative syntax, provide the appropriate finder, loader and
|
an alternative syntax, provide the appropriate finder, loader and
|
||||||
iterator. **polyloader** is different from traditional importlib shims
|
iterator. **polyloader** is different from traditional importlib shims
|
||||||
in that it directly affects the root loader, and thus allows for the
|
in that it directly affects the default source file loader, and thus
|
||||||
discovery and importation of suffixes not listed in Python's defaults.
|
allows for the discovery and importation of suffixes not listed in
|
||||||
|
Python's defaults.
|
||||||
|
|
||||||
To use:
|
To use:
|
||||||
-------
|
-------
|
||||||
|
|
Loading…
Reference in New Issue