summaryrefslogtreecommitdiff
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-05-04 18:37:50 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2011-05-04 18:37:50 +0300
commit6fa0947285292c724b8bb96b97eef4b7570218cf (patch)
tree0ad34208792888b8a1edc1ce5653ec152b3dd1ad /Lib/platform.py
parentf5164f6e93b4b5be9f828557b155ec457b39ed8c (diff)
downloadcpython-git-6fa0947285292c724b8bb96b97eef4b7570218cf.tar.gz
#11985: update docstring of platform.python_implementation.
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py7
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]