Skip to content

Commit f16898b

Browse files
committed
#11985: update docstring of platform.python_implementation.
1 parent 308053e commit f16898b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Lib/platform.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,9 +1398,10 @@ def python_implementation():
13981398
""" Returns a string identifying the Python implementation.
13991399
14001400
Currently, the following implementations are identified:
1401-
'CPython' (C implementation of Python),
1402-
'IronPython' (.NET implementation of Python),
1403-
'Jython' (Java implementation of Python).
1401+
'CPython' (C implementation of Python),
1402+
'IronPython' (.NET implementation of Python),
1403+
'Jython' (Java implementation of Python),
1404+
'PyPy' (Python implementation of Python).
14041405
14051406
"""
14061407
return _sys_version()[0]

0 commit comments

Comments
 (0)