This document summarizes micro-threading libraries like greenlet, Stackless Python, fibers, and continulets. It explains that greenlet allows lightweight context switching between micro-threads called greenlets. Stackless Python extends CPython with tasklets and channels. PyPy implements greenlets and Stackless using continulets, which are one-shot continuations. Continulets and stacklets provide low-level context switching between continuations. The fibers library provides a higher-level API inspired by greenlets but built on top of stacklets.