swig/Examples/test-suite/python/langobj_runme.py
2006-01-11 23:05:12 +00:00

13 lines
185 B
Python

import sys
from langobj import *
x ="hello"
rx = sys.getrefcount(x)
v = identity(x)
rv = sys.getrefcount(v)
if v != x:
raise RuntimeError
if rv - rx != 1:
raise RuntimeError