diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-04 15:37:50 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-04 15:37:50 (GMT) |
commit | f16898bc80fafeaf025606ea00e841c310b8df39 (patch) | |
tree | 6766a6afed71f260f8c805a00a80f6c53255b130 /Lib/platform.py | |
parent | 308053ee1109fe8aacbdd0e44aaaaaad1800d2a3 (diff) | |
download | cpython-f16898bc80fafeaf025606ea00e841c310b8df39.zip cpython-f16898bc80fafeaf025606ea00e841c310b8df39.tar.gz cpython-f16898bc80fafeaf025606ea00e841c310b8df39.tar.bz2 |
#11985: update docstring of platform.python_implementation.
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-x | Lib/platform.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index dd09460..5ad1012 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1398,9 +1398,10 @@ def python_implementation(): """ Returns a string identifying the Python implementation. Currently, the following implementations are identified: - 'CPython' (C implementation of Python), - 'IronPython' (.NET implementation of Python), - 'Jython' (Java implementation of Python). + 'CPython' (C implementation of Python), + 'IronPython' (.NET implementation of Python), + 'Jython' (Java implementation of Python), + 'PyPy' (Python implementation of Python). """ return _sys_version()[0] |