[Python-checkins] r64546 - python/trunk/Lib/multiprocessing/managers.py

benjamin.peterson python-checkins at python.org
Thu Jun 26 23:24:35 CEST 2008


Author: benjamin.peterson
Date: Thu Jun 26 23:24:35 2008
New Revision: 64546

Log:
use the new API

Modified:
   python/trunk/Lib/multiprocessing/managers.py

Modified: python/trunk/Lib/multiprocessing/managers.py
==============================================================================
--- python/trunk/Lib/multiprocessing/managers.py	(original)
+++ python/trunk/Lib/multiprocessing/managers.py	Thu Jun 26 23:24:35 2008
@@ -967,7 +967,7 @@
     # 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):


More information about the Python-checkins mailing list