summaryrefslogtreecommitdiff
path: root/trunk/Examples/test-suite/python/disown_runme.py
blob: b8cae077a9e15f63adcf2ea54641d038b7baab4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from disown import *

a = A()

tmp = a.thisown

a.thisown = 0
if a.thisown:
    raise RuntimeError

a.thisown = 1
if (not a.thisown):
    raise RuntimeError

a.thisown = tmp
if (a.thisown != tmp):
    raise RuntimeError    


b = B()

b.acquire(a)

if a.thisown:
    raise RuntimeError