We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4509cfd commit 9ed366dCopy full SHA for 9ed366d
mypyc/test-data/run-weakref.test
@@ -28,6 +28,7 @@ def test_weakref_ref_with_callback():
28
def test_weakref_proxy():
29
obj = Object()
30
p = proxy(obj)
31
+ assert obj.some_meth() == 1
32
assert p.some_meth() == 1
33
obj = None
34
with pytest.raises(ReferenceError):
@@ -36,6 +37,7 @@ def test_weakref_proxy():
36
37
def test_weakref_proxy_with_callback():
38
39
p = proxy(obj, lambda x: x)
40
41
42
43
0 commit comments