Skip to content
Snippets Groups Projects
Commit f74f4787 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

A few grammar fixes

parent 8ef45ac2
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@
language, passing Python test suite (with minor modifications that were
already accepted in the main python in newer versions). It supports most
of the commonly used Python <a class="reference external" href="http://docs.python.org/library/">standard library modules</a>; details below.</p>
<p>PyPy have alpha-level support of the <a class="reference external" href="http://docs.python.org/c-api/">CPython C API</a>, however, as of 1.3
release this feature is not yet complete. Most libraries would require
<p>PyPy has alpha-level support of the <a class="reference external" href="http://docs.python.org/c-api/">CPython C API</a>, however, as of 1.3
release this feature is not yet complete. Most libraries will require
a bit of effort to work, but there are known success stories. Check out
PyPy blog for updates.</p>
......@@ -56,9 +56,9 @@
a bit of effort to work, but there are known success stories. Check out
PyPy blog for updates.</p>
<p>C extensions has to be recompiled for PyPy in order to work. Depending on
<p>C extensions need to be recompiled for PyPy in order to work. Depending on
your build system, it might work out of the box or will be slightly harder.
In order to instruct pypy to load a CPython extension (compiled with supplied
Python.h), run following line:</p>
<pre class="literal-block">
import cpyext
</pre>
......@@ -59,10 +59,10 @@
your build system, it might work out of the box or will be slightly harder.
In order to instruct pypy to load a CPython extension (compiled with supplied
Python.h), run following line:</p>
<pre class="literal-block">
import cpyext
</pre>
<p>before importing an extensions. You can put this line in your PYTHONSTARTUP
<p>before importing any extensions. You can put this line in your PYTHONSTARTUP
file if you want this to be enabled permanently.</p>
<p>Standard library modules supported by PyPy, in alphabetical order:</p>
<ul class="simple">
......@@ -131,4 +131,4 @@
</div>
</div></div></div>
</body>
</html>
\ No newline at end of file
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment