Files
RustPython/tests/snippets/weakrefs.py
2018-11-04 12:07:53 +01:00

13 lines
84 B
Python

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