diff options
author | B. Watson <yalhcru@gmail.com> | 2016-11-14 15:45:17 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-11-15 21:41:38 +0700 |
commit | b7f38f7d75b92ce365f239e51c1d9d9fe902af0d (patch) | |
tree | 411820ddc9c716d44ed686f01d93745d85a913e0 /libraries/toro | |
parent | 623a037ad35d878aa4346faff2f8a49c08489639 (diff) | |
download | slackbuilds-b7f38f7d75b92ce365f239e51c1d9d9fe902af0d.tar.gz |
libraries/toro: Fix README.
Diffstat (limited to 'libraries/toro')
-rw-r--r-- | libraries/toro/README | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libraries/toro/README b/libraries/toro/README index 30171098ec..0aae4ee06a 100644 --- a/libraries/toro/README +++ b/libraries/toro/README @@ -1,12 +1,12 @@ -With Tornado’s gen module, you can turn Python generators into full-featured -coroutines, but coordination among these coroutines is difficult without -mutexes, semaphores, and queues. +With Tornado's gen module, you can turn Python generators into +full-featured coroutines, but coordination among these coroutines is +difficult without mutexes, semaphores, and queues. -Toro provides to Tornado coroutines a set of locking primitives and queues -analogous to those that Gevent provides to Greenlets, or that the standard -library provides to threads. +Toro provides to Tornado coroutines a set of locking primitives and +queues analogous to those that Gevent provides to Greenlets, or that +the standard library provides to threads. (Note that these primitives and queues are not actually thread-safe and -cannot be used in place of those from the standard library–they are meant to -coordinate Tornado coroutines in single-threaded apps, not to protect shared -objects in multithreaded apps.) +cannot be used in place of those from the standard library -- they are +meant to coordinate Tornado coroutines in single-threaded apps, not to +protect shared objects in multithreaded apps.) |