Home
last modified time | relevance | path

Searched refs:BaseProxy (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py632 del BaseProxy._address_to_local[address]
692 class BaseProxy(object): class
701 BaseProxy._mutex.acquire()
703 tls_idset = BaseProxy._address_to_local.get(token.address, None)
706 BaseProxy._address_to_local[token.address] = tls_idset
708 BaseProxy._mutex.release()
735 util.register_after_fork(self, BaseProxy._after_fork)
792 self, BaseProxy._decref,
901 ProxyType = type(name, (BaseProxy,), dic)
967 class IteratorProxy(BaseProxy):
[all …]
/external/python/cpython2/Doc/includes/
Dmp_newtype.py10 from multiprocessing.managers import BaseManager, BaseProxy
29 class GeneratorProxy(BaseProxy):
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1362 from multiprocessing.managers import BaseManager, BaseProxy, RemoteError
1376 class IteratorProxy(BaseProxy):
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1424 *proxytype* is a subclass of :class:`BaseProxy` which is used to create
1430 :meth:`BaseProxy._callmethod`. (If *exposed* is ``None`` then
1708 .. class:: BaseProxy
1710 Proxy objects are instances of subclasses of :class:`BaseProxy`.