[Python-checkins] r77741 - python/trunk/Doc/library/threading.rst

facundo.batista python-checkins at python.org
Mon Jan 25 07:15:01 CET 2010


Author: facundo.batista
Date: Mon Jan 25 07:15:01 2010
New Revision: 77741

Log:
Added a note about Event.is_set() syntax being new to 2.6



Modified:
   python/trunk/Doc/library/threading.rst

Modified: python/trunk/Doc/library/threading.rst
==============================================================================
--- python/trunk/Doc/library/threading.rst	(original)
+++ python/trunk/Doc/library/threading.rst	Mon Jan 25 07:15:01 2010
@@ -667,6 +667,9 @@
 
       Return true if and only if the internal flag is true.
 
+      .. versionchanged:: 2.6
+         The ``is_set()`` syntax is new.
+
    .. method:: set()
 
       Set the internal flag to true. All threads waiting for it to become true


More information about the Python-checkins mailing list