]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix isSet in _exposed
authorBenjamin Peterson <benjamin@python.org>
Thu, 26 Jun 2008 21:29:19 +0000 (21:29 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 26 Jun 2008 21:29:19 +0000 (21:29 +0000)
Lib/multiprocessing/managers.py

index 7ee50bed52fe90fbc60943d50fd194186cf2d729..d322d9076699cc14e789d43de5b4fc9378909e2b 100644 (file)
@@ -964,8 +964,7 @@ class ConditionProxy(AcquirerProxy):
         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):