summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-05-04 15:37:50 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-05-04 15:37:50 (GMT)
commitf16898bc80fafeaf025606ea00e841c310b8df39 (patch)
tree6766a6afed71f260f8c805a00a80f6c53255b130 /Lib
parent308053ee1109fe8aacbdd0e44aaaaaad1800d2a3 (diff)
downloadcpython-f16898bc80fafeaf025606ea00e841c310b8df39.zip
cpython-f16898bc80fafeaf025606ea00e841c310b8df39.tar.gz
cpython-f16898bc80fafeaf025606ea00e841c310b8df39.tar.bz2
#11985: update docstring of platform.python_implementation.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/platform.py7
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]