Английская Википедия:CPython

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Short description Шаблон:Distinguish Шаблон:Multiple issues Шаблон:Infobox software

CPython is the reference implementation of the Python programming language. Written in C and Python, CPython is the default and most widely used implementation of the Python language.

CPython can be defined as both an interpreter and a compiler as it compiles Python code into bytecode before interpreting it. It has a foreign function interface with several languages, including C, in which one must explicitly write bindings in a language other than Python.

Design

A particular feature of CPython is that it makes use of a global interpreter lock (GIL) on each CPython interpreter process, which means that within a single process, only one thread may be processing Python bytecode at any one time.[1] This does not mean that there is no point in multithreading; the most common multithreading scenario is where threads are mostly waiting on external processes to complete.

This can happen when multiple threads are servicing separate clients. One thread may be waiting for a client to reply, and another may be waiting for a database query to execute, while the third thread is actually processing Python code.

However, the GIL does mean that CPython is not suitable for processes that implement CPU-intensive algorithms in Python code that could potentially be distributed across multiple cores.

In real-world applications, situations where the GIL is a significant bottleneck are quite rare. This is because Python is an inherently slow language and is generally not used for CPU-intensive or time-sensitive operations. Python is typically used at the top level and calls functions in libraries to perform specialized tasks. These libraries are generally not written in Python, and Python code in another thread can be executed while a call to one of these underlying processes takes place. The non-Python library being called to perform the CPU-intensive task is not subject to the GIL and may concurrently execute many threads on multiple processors without restriction.

Concurrency of Python code can only be achieved with separate CPython interpreter processes managed by a multitasking operating system. This complicates communication between concurrent Python processes, though the multiprocessing module mitigates this somewhat; it means that applications that really can benefit from concurrent Python-code execution can be implemented with limited overhead.

The presence of the GIL simplifies the implementation of CPython, and makes it easier to implement multi-threaded applications that do not benefit from concurrent Python code execution. However, without a GIL, multiprocessing apps must make sure all common code is thread safe.

Although many proposals have been made to eliminate the GIL, the general consensus has been that in most cases, the advantages of the GIL outweigh the disadvantages; in the few cases where the GIL is a bottleneck, the application should be built around the multiprocessing structure. To help allow more parallelism, an improvement was released in October 2023 to allow a separate GIL per subinterpreter in a single Python process and have been described as "threads with opt-in sharing".[2][3]

After several debates, a project was launched in 2023 to propose making the GIL optional from version 3.13 of Python,[4] which is scheduled for release in October 2024.[5]

History

Шаблон:Main article

Unladen Swallow

Unladen Swallow was an optimization branch of CPython, intended to be fully compatible and significantly faster. It aimed to achieve its goals by supplementing CPython's custom virtual machine with a just-in-time compiler built using LLVM.

The project had stated a goal of a speed improvement by a factor of five over CPython;[6] this goal was not met.[7]

The project was sponsored by Google, and the project owners, Thomas Wouters, Jeffrey Yasskin, and Collin Winter, are full-time Google employees; however, most project contributors were not Google employees.[8] Unladen Swallow was hosted on Google Code.[9]

Like many things regarding the Python language, the name Unladen Swallow is a Monty Python reference, specifically to the joke about the airspeed velocity of unladen swallows in Monty Python and the Holy Grail.

Although it fell short of all published goals, Unladen Swallow did produce some code that got added to the main Python implementation, such as improvements to the cPickle module.[10]

In July 2010, some observers speculated on whether the project was dead or dying since the 2009 Q4 milestone had not yet been released.[11] The traffic on Unladen's mailing list had decreased from 500 messages in January 2010 to fewer than 10 in September 2010.[12] It has also been reported that Unladen lost Google's funding.[13] In November 2010, one of the main developers announced that "Jeffrey and I have been pulled on to other projects of higher importance to Google."[14]

The 2009 Q4 development branch was created on 26 January 2010,[15] but no advertising was made on the website. Further, regarding the long-term plans, and as the project missed the Python 2.7 release, a Python Enhancement Proposal (PEP)[7] was accepted, which proposed a merge of Unladen Swallow into a special py3k-jit branch of Python's official repository. As of July 2010, this work was ongoing.[16] This merging would have taken some time, since Unladen Swallow was originally based on Python 2.6[17] with which Python 3 broke compatibility (see Python 3000 for more details). However, the PEP was subsequently withdrawn.

In early 2011, it became clear that the project was stopped.[18]

Unladen Swallow release history

  • 2009 Q1[19]
  • 2009 Q2[20]
  • 2009 Q3: reduce memory use, improve speed[21]

Distribution

Officially supported tier-1 platforms are Windows, Linux, and macOS. (Also Raspberry Pi OS, and Linux for s390x on lower tier.)

More platforms have working implementations, including:[22]

Unix-like

Шаблон:Columns-list

Special and embedded

Шаблон:Columns-list

Other

Шаблон:Columns-list

PEP 11[23] lists platforms which are not supported in CPython by the Python Software Foundation. These platforms can still be supported by external ports. These ports include:

Шаблон:Columns-list

External ports not integrated to Python Software Foundation's official version of CPython, with links to its main development site, often include additional modules for platform-specific functionalities, like graphics and sound API for PSP and SMS and camera API for S60. These ports include:

Шаблон:Columns-list

Enterprise Linux

These Python versions are distributed with currently-supported enterprise Linux distributions.[24] The support status of Python in the table refers to support from the Python core team, and not from the distribution maintainer.

Enterprise Linux
Distribution version Distribution end-of-life Python version
Ubuntu 22.04 LTS (Jammy Jellyfish) 3.10 [1]
Ubuntu 20.04 LTS (Focal Fossa) 2030-04[25]Шаблон:Update after [26] Шаблон:Version[27]Шаблон:Update after
Ubuntu 18.04 LTS (Bionic Beaver) 2028-04[28]Шаблон:Update after Шаблон:Version[29] Шаблон:Version[30]
Ubuntu 16.04 LTS (Xenial Xerus) 2021-04-30[31]Шаблон:Update after Шаблон:Version[29] Шаблон:Version[30]
Debian 12 2028-06[32]Шаблон:Update after Шаблон:Version[32]Шаблон:Update after
Debian 11 2026-06[33]Шаблон:Update after Шаблон:Version[33]Шаблон:Update after
Debian 10 2024-06[34]Шаблон:Update after Шаблон:Version[35] Шаблон:Version[36]Шаблон:Update after
Debian 9 2022-06-30[37]Шаблон:Update after Шаблон:Version[38] Шаблон:Version[39]
Red Hat Enterprise Linux 8 2029Шаблон:Update after Шаблон:Version[40] Шаблон:Version
Red Hat Enterprise Linux 7 2024-11-30[41]Шаблон:Update after Шаблон:Version[42]
CentOS 8 2029-05-31Шаблон:Update after Шаблон:Version Шаблон:Version
CentOS 7 2024-06-30Шаблон:Update after Шаблон:Version[43]
SUSE Linux Enterprise Server 15 2031-07-31Шаблон:Update after Шаблон:Version[44] Шаблон:Version
SUSE Linux Enterprise Server 12 2027-10-31Шаблон:Update after Шаблон:Version[45]
SUSE Linux Enterprise Server 11 2022-03-31Шаблон:Update after Шаблон:Version[45]
Шаблон:Version

Alternatives

CPython is one of several "production-quality" Python implementations including: Jython, written in Java for the Java virtual machine (JVM), PyPy, written in RPython and translated into C, and IronPython, which is written in C# for the Common Language Infrastructure. There are also several experimental implementations.[46]

References

Шаблон:Reflist

Further reading

External links

Шаблон:Python (programming language)