Stackless Python
Stackless Python, or Stackless, is a Python programming language interpreter, so named because it avoids depending on the C call stack for its own stack. In practice, Stackless Python uses the C stack, but the stack is cleared between function calls. The most prominent feature of Stackless is microthreads, which avoid much of the overhead associated with usual operating system threads. In addition to Python features, Stackless also adds support for coroutines, communication channels, and task serialization.
Original author(s) | Christian Tismer |
---|---|
Developer(s) | Anselm Kruis |
Initial release | 1998 |
Stable release | |
Preview release | 12 August 2021
|
Repository | |
Written in | C, Python |
Operating system | Linux, macOS, Windows |
Type | Interpreter |
License | Python Software Foundation License |
Website | www |
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.