diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-04 18:37:50 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-04 18:37:50 +0300 |
commit | 6fa0947285292c724b8bb96b97eef4b7570218cf (patch) | |
tree | 0ad34208792888b8a1edc1ce5653ec152b3dd1ad /Lib/platform.py | |
parent | f5164f6e93b4b5be9f828557b155ec457b39ed8c (diff) | |
download | cpython-git-6fa0947285292c724b8bb96b97eef4b7570218cf.tar.gz |
#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 3181303394..6db7f19e48 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1448,9 +1448,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] |