summaryrefslogtreecommitdiff
path: root/libraries/greenlet/README
diff options
context:
space:
mode:
authorAdis Nezirović <adis@linux.org.ba>2014-01-04 05:15:14 +0700
committerErik Hanson <erik@slackbuilds.org>2014-01-07 11:14:00 -0600
commit707fe5f4aaa40c7332d9996c4b0b85d0bed723f9 (patch)
tree7ed5cd9b6ad2cb8cb49bf4fa0b95e91270f03d94 /libraries/greenlet/README
parentfdcb69ad13be2d74bf3f7b6c86396c28eff8e99e (diff)
downloadslackbuilds-707fe5f4aaa40c7332d9996c4b0b85d0bed723f9.tar.gz
libraries/greenlet: Added (micro-threads for Python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/greenlet/README')
-rw-r--r--libraries/greenlet/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/libraries/greenlet/README b/libraries/greenlet/README
new file mode 100644
index 0000000000..ae2ca5317a
--- /dev/null
+++ b/libraries/greenlet/README
@@ -0,0 +1,10 @@
+The greenlet package is a spin-off of Stackless, a version of CPython
+that supports micro-threads called "tasklets". Tasklets run
+pseudo-concurrently (typically in a single or a few OS-level threads)
+and are synchronized with data exchanges on "channels".
+
+Greenlets are provided as a C extension module for the regular
+unmodified Python interpreter.
+
+Greenlets are lightweight coroutines for in-process concurrent
+programming.