diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-03 20:41:48 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-03 20:41:48 +0300 |
commit | 001cc954bbe229f504cc69bc65615f74982659d5 (patch) | |
tree | cc152a404574d0d228e52a0dc66284ad95840810 | |
parent | e4163e2c8d1882b7318cbaf1d5ba78c0c7070734 (diff) | |
download | cpython-git-001cc954bbe229f504cc69bc65615f74982659d5.tar.gz |
#11985: document the return value of platform.python_implementation for PyPy.
-rw-r--r-- | Doc/library/platform.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index 7802422102..c2b85e6096 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -108,7 +108,7 @@ Cross Platform .. function:: python_implementation() Returns a string identifying the Python implementation. Possible return values - are: 'CPython', 'IronPython', 'Jython'. + are: 'CPython', 'IronPython', 'Jython', 'PyPy'. .. versionadded:: 2.6 |