Stackless Python
| Stackless Python | |
|---|---|
| Original author(s) | Christian Tismer | 
| Developer(s) | Anselm Kruis | 
| Initial release | 1998 | 
| Stable release | 3.8.1-slp 
   / 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, was a Python programming language interpreter. Its Github repository has been archived since February 2025, and the project has been officially discontinued.
It was 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.