1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
from li_boost_shared_ptr_bits import * def check(nd): nd.i = 200 i = nd.i try: nd.notexist = 100 passed = 0 except: passed = 1 if not passed: raise "Test failed" nd = NonDynamic() check(nd) b = boing(nd) check(b)