From 0adfd93f6f2419a5127d849ba974215ed6aaa6ab Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 26 Jun 2008 21:24:35 +0000 Subject: use the new API --- Lib/multiprocessing/managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index 1460d6c..7ee50be 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): -- cgit v0.12