Home | History | Annotate | Download | only in test

Lines Matching defs:_h

1296     def _h(self):
1297 return '_h()'
1316 MyManager.register('Bar', callable=FooBar, exposed=('f', '_h'))
1332 foo_methods = [name for name in ('f', 'g', '_h') if hasattr(foo, name)]
1333 bar_methods = [name for name in ('f', 'g', '_h') if hasattr(bar, name)]
1336 self.assertEqual(bar_methods, ['f', '_h'])
1341 self.assertRaises(RemoteError, foo._callmethod, '_h')
1344 self.assertEqual(bar._h(), '_h()')
1346 self.assertEqual(bar._callmethod('_h'), '_h()')