[Python-checkins] peps: Minor clarification
brett.cannon
python-checkins at python.org
Sat Apr 16 22:47:36 CEST 2011
http://hg.python.org/peps/rev/6841c20e6857
changeset: 3869:6841c20e6857
user: Brett Cannon <brett at python.org>
date: Sat Apr 16 13:47:30 2011 -0700
summary:
Minor clarification
files:
pep-0399.txt | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pep-0399.txt b/pep-0399.txt
--- a/pep-0399.txt
+++ b/pep-0399.txt
@@ -35,9 +35,9 @@
A problem all of the VMs other than CPython face is handling modules
from the standard library that are implemented (to some extent) in C.
-Since they do not typically support the entire `C API of Python`_ they
-are unable to use the code used to create the module. Often times this
-leads these other VMs to either re-implement the modules in pure
+Since they do not typically support the entire `C API of CPython`_
+they are unable to use the code used to create the module. Often times
+this leads these other VMs to either re-implement the modules in pure
Python or in the programming language used to implement the VM
(e.g., in C# for IronPython). This duplication of effort between
CPython, PyPy, Jython, and IronPython is extremely unfortunate as
@@ -231,5 +231,5 @@
.. _IronPython: http://ironpython.net/
.. _Jython: http://www.jython.org/
.. _PyPy: http://pypy.org/
-.. _C API of Python: http://docs.python.org/py3k/c-api/index.html
+.. _C API of CPython: http://docs.python.org/py3k/c-api/index.html
.. _sqlite3: http://docs.python.org/py3k/library/sqlite3.html
--
Repository URL: http://hg.python.org/peps
More information about the Python-checkins
mailing list