]> granicus.if.org Git - python/commitdiff
use the new API
authorBenjamin Peterson <benjamin@python.org>
Thu, 26 Jun 2008 21:24:35 +0000 (21:24 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 26 Jun 2008 21:24:35 +0000 (21:24 +0000)
Lib/multiprocessing/managers.py

index 1460d6c566bc252c2a225a4e6e57afee850ddc47..7ee50bed52fe90fbc60943d50fd194186cf2d729 100644 (file)
@@ -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):