Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/python/langobj_runme.py
2019-08-04 21:38:19 -05:00

14 lines
186 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