Searched refs:MyManager (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Doc/includes/ |
D | mp_newtype.py | 44 class MyManager(BaseManager): class 48 MyManager.register('Foo1', Foo) 51 MyManager.register('Foo2', Foo, exposed=('g', '_h')) 54 MyManager.register('baz', baz, proxytype=GeneratorProxy) 57 MyManager.register('operator', get_operator_module) 62 manager = MyManager()
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1385 class MyManager(BaseManager): class 1388 MyManager.register('Foo', callable=FooBar) 1389 MyManager.register('Bar', callable=FooBar, exposed=('f', '_h')) 1390 MyManager.register('baz', callable=baz, proxytype=IteratorProxy) 1398 manager = MyManager()
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1576 class MyManager(BaseManager): 1579 MyManager.register('Maths', MathsClass) 1582 manager = MyManager()
|