From: Ezio Melotti Date: Wed, 4 May 2011 15:37:50 +0000 (+0300) Subject: #11985: update docstring of platform.python_implementation. X-Git-Tag: v2.7.2rc1~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fa0947285292c724b8bb96b97eef4b7570218cf;p=python #11985: update docstring of platform.python_implementation. --- 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]