blob: b32d5a18a13f2d2e2658ffb9bd9f513cd7ba7365 [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