From f16898bc80fafeaf025606ea00e841c310b8df39 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Wed, 4 May 2011 18:37:50 +0300 Subject: #11985: update docstring of platform.python_implementation. --- Lib/platform.py | 7 ++++--- 1 file 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] -- cgit v0.12