[Python-checkins] r64547 - python/trunk/Lib/multiprocessing/managers.py

benjamin.peterson python-checkins at python.org
Thu Jun 26 23:29:19 CEST 2008


Author: benjamin.peterson
Date: Thu Jun 26 23:29:19 2008
New Revision: 64547

Log:
fix isSet in _exposed

Modified:
   python/trunk/Lib/multiprocessing/managers.py

Modified: python/trunk/Lib/multiprocessing/managers.py
==============================================================================
--- python/trunk/Lib/multiprocessing/managers.py	(original)
+++ python/trunk/Lib/multiprocessing/managers.py	Thu Jun 26 23:29:19 2008
@@ -964,8 +964,7 @@
         return self._callmethod('notify_all')
 
 class EventProxy(BaseProxy):
-    # XXX will Event.isSet name be available in Py3.0?
-    _exposed_ = ('isSet', 'set', 'clear', 'wait')
+    _exposed_ = ('is_set', 'set', 'clear', 'wait')
     def is_set(self):
         return self._callmethod('is_set')
     def set(self):


More information about the Python-checkins mailing list