Files
RustPython/tests/snippets/weakrefs.py
2019-02-12 19:26:10 +01:00

14 lines
103 B
Python

from _weakref import ref
class X:
pass
a = X()
b = ref(a)
assert callable(b)
assert b() is a