Home | History | Annotate | Download | only in multiprocessing

Lines Matching full:_callmethod

746     def _callmethod(self, methodname, args=(), kwds={}):
779 return self._callmethod('#GETVALUE')
855 return self._callmethod('__repr__')
898 return self._callmethod(%r, args, kwds)''' % (meth, meth) in dic
972 return self._callmethod('__next__', args)
974 return self._callmethod('next', args)
976 return self._callmethod('send', args)
978 return self._callmethod('throw', args)
980 return self._callmethod('close', args)
986 return self._callmethod('acquire', (blocking,))
988 return self._callmethod('release')
990 return self._callmethod('acquire')
992 return self._callmethod('release')
999 return self._callmethod('wait', (timeout,))
1001 return self._callmethod('notify')
1003 return self._callmethod('notify_all')
1008 return self._callmethod('is_set')
1010 return self._callmethod('set')
1012 return self._callmethod('clear')
1014 _callmethod('wait', (timeout,))
1021 callmethod = object.__getattribute__(self, '_callmethod')
1026 callmethod = object.__getattribute__(self, '_callmethod')
1031 callmethod = object.__getattribute__(self, '_callmethod')
1038 return self._callmethod('get')
1040 return self._callmethod('set', (value,))
1053 self._callmethod('extend', (value,))
1056 self._callmethod('__imul__', (value,))