From: Benjamin Peterson Date: Thu, 26 Jun 2008 21:29:19 +0000 (+0000) Subject: fix isSet in _exposed X-Git-Tag: v2.6b2~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80821f7cf4b2af64e444ad71ca13eb96fcbd6454;p=thirdparty%2FPython%2Fcpython.git fix isSet in _exposed --- diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index 7ee50bed52fe..d322d9076699 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -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):