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 | 1a80b6d22ff024abf95d59e94a663c8391cdb65a (patch) | |
tree | 480ec649c7104980d95dd04617681e8ba43b90aa | |
parent | 928360dee070381a9d5876cb6a06f9f4bd67634b (diff) | |
download | cpython-1a80b6d22ff024abf95d59e94a663c8391cdb65a.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 a71d5335a2..36275ed226 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -104,7 +104,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'. .. function:: python_revision() |