diff options
author | Adis Nezirović <adis@linux.org.ba> | 2014-01-04 05:15:14 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-07 11:14:00 -0600 |
commit | 707fe5f4aaa40c7332d9996c4b0b85d0bed723f9 (patch) | |
tree | 7ed5cd9b6ad2cb8cb49bf4fa0b95e91270f03d94 /libraries/greenlet/slack-desc | |
parent | fdcb69ad13be2d74bf3f7b6c86396c28eff8e99e (diff) |
libraries/greenlet: Added (micro-threads for Python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/greenlet/slack-desc')
-rw-r--r-- | libraries/greenlet/slack-desc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libraries/greenlet/slack-desc b/libraries/greenlet/slack-desc new file mode 100644 index 000000000000..3748bd4964b0 --- /dev/null +++ b/libraries/greenlet/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +greenlet: greenlet (micro-threads for Python) +greenlet: +greenlet: The greenlet package is a spin-off of Stackless, a version of +greenlet: CPython that supports micro-threads called "tasklets". Tasklets run +greenlet: pseudo-concurrently (typically in a single or a few OS-level threads) +greenlet: and are synchronized with data exchanges on "channels". +greenlet: +greenlet: Greenlets are lightweight coroutines for in-process concurrent +greenlet: programming. They are provided as a C extension module for the +greenlet: regular unmodified interpreter. +greenlet: |