From: Benjamin Peterson Date: Thu, 26 Jun 2008 21:24:35 +0000 (+0000) Subject: use the new API X-Git-Tag: v2.6b2~165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0adfd93f6f2419a5127d849ba974215ed6aaa6ab;p=python use the new API --- diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index 1460d6c566..7ee50bed52 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -967,7 +967,7 @@ class EventProxy(BaseProxy): # XXX will Event.isSet name be available in Py3.0? _exposed_ = ('isSet', 'set', 'clear', 'wait') def is_set(self): - return self._callmethod('isSet') + return self._callmethod('is_set') def set(self): return self._callmethod('set') def clear(self):