blob: c10e19303bea0860a589ad68b65cb4b3c72aed47 [file] [log] [blame]
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