[Checkins] SVN: zc.thread/trunk/README.txt *** empty log message ***

Jim Fulton jim at zope.com
Sun Nov 27 19:52:40 UTC 2011


Log message for revision 123493:
  *** empty log message ***

Changed:
  U   zc.thread/trunk/README.txt

-=-
Modified: zc.thread/trunk/README.txt
===================================================================
--- zc.thread/trunk/README.txt	2011-11-27 19:50:31 UTC (rev 123492)
+++ zc.thread/trunk/README.txt	2011-11-27 19:52:40 UTC (rev 123493)
@@ -35,14 +35,15 @@
     def mythread():
         ...
 
-- After a thread finished, you can get the return value of the
+- After a thread finishes, you can get the return value of the
   target function from the thread's ``value`` attribute, or, if the
   function raises an exception, you can get the exception object from
   the thread's ``exception`` attribute. (This feature was inspired by
   the same feature in gevent greenlets.)
 
 There's also a Process constructor/decorator that works like Thread,
-but with multi-processing processes.
+but with multi-processing processes, and without the ``value`` and
+``exception`` attributes.
 
 Changes
 *******



More information about the checkins mailing list