mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 17:52:17 +00:00
- Added a new function, no_override. When a member function is specified as "no_override", no virtual wrappers are generated for it, improving performance and letting the code more clean. - There was a bug in which the policy of virtual member functions was being ignored (patch by Roman Sulzhyk). [SVN r18814]
30 lines
703 B
Python
30 lines
703 B
Python
import unittest
|
|
from _inherit import *
|
|
|
|
class InheritExampleTest(unittest.TestCase):
|
|
|
|
def testIt(self):
|
|
a = A_int()
|
|
b = B()
|
|
self.assert_(isinstance(b, A_int))
|
|
self.assert_(issubclass(B, A_int))
|
|
a.set(10)
|
|
self.assertEqual(a.get(), 10)
|
|
b.set(1)
|
|
self.assertEqual(b.go(), 1)
|
|
self.assertEqual(b.get(), 1)
|
|
|
|
d = D()
|
|
self.assert_(issubclass(D, B))
|
|
self.assertEqual(d.x, 0)
|
|
self.assertEqual(d.y, 0)
|
|
self.assertEqual(d.s, 1)
|
|
self.assertEqual(D.s, 1)
|
|
self.assertEqual(d.f1(), 1)
|
|
self.assertEqual(d.f2(), 2)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|