fix isSet in _exposed

This commit is contained in:
Benjamin Peterson 2008-06-26 21:29:19 +00:00
parent 0adfd93f6f
commit 80821f7cf4
1 changed files with 1 additions and 2 deletions

View 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):