This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
Original author(s) | Christian Tismer |
---|---|
Developer(s) | Anselm Kruis |
Initial release | 1998 |
Stable release | 3.8.1-slp[1]
/ January 22, 2020 |
Preview release | 3.9.0 alpha 0
|
Repository | |
Written in | C, Python |
Operating system | Linux, macOS, Windows |
Type | Interpreter |
License | Python Software Foundation License |
Website | github.com/stackless-dev |
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.[2] 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.