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.

Stackless Python
Original author(s)Christian Tismer
Developer(s)Anselm Kruis
Initial release1998 (1998)
Stable release
3.8.1-slp  / January 22, 2020 (2020-01-22)
Preview release
12 August 2021 (12 August 2021)
Repository
Written inC, Python
Operating systemLinux, macOS, Windows
TypeInterpreter
LicensePython Software Foundation License
Websitewww.stackless.com
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.