@@ -6,8 +6,7 @@ def f(x: object) -> object:
66
77[out]
88def f(x):
9- x :: object
10- r0 :: object
9+ x, r0 :: object
1110L0:
1211 r0 = PyWeakref_NewRef(x, NULL)
1312 return r0
@@ -20,8 +19,7 @@ def f(x: object, cb: Callable[[object], Any]) -> object:
2019
2120[out]
2221def f(x, cb):
23- x, cb :: object
24- r0 :: object
22+ x, cb, r0 :: object
2523L0:
2624 r0 = PyWeakref_NewRef(x, cb)
2725 return r0
@@ -34,8 +32,7 @@ def f(x: object) -> object:
3432
3533[out]
3634def f(x):
37- x :: object
38- r0 :: object
35+ x, r0 :: object
3936L0:
4037 r0 = PyWeakref_NewRef(x, NULL)
4138 return r0
@@ -48,8 +45,7 @@ def f(x: object, cb: Callable[[object], Any]) -> object:
4845
4946[out]
5047def f(x, cb):
51- x, cb :: object
52- r0 :: object
48+ x, cb, r0 :: object
5349L0:
5450 r0 = PyWeakref_NewRef(x, cb)
5551 return r0
@@ -62,8 +58,7 @@ def f(x: object) -> object:
6258
6359[out]
6460def f(x):
65- x :: object
66- r0 :: object
61+ x, r0 :: object
6762L0:
6863 r0 = PyWeakref_NewProxy(x, NULL)
6964 return r0
@@ -76,8 +71,7 @@ def f(x: object, cb: Callable[[object], Any]) -> object:
7671
7772[out]
7873def f(x, cb):
79- x, cb :: object
80- r0 :: object
74+ x, cb, r0 :: object
8175L0:
8276 r0 = PyWeakref_NewProxy(x, cb)
8377 return r0
@@ -90,8 +84,7 @@ def f(x: object) -> object:
9084
9185[out]
9286def f(x):
93- x :: object
94- r0 :: object
87+ x, r0 :: object
9588L0:
9689 r0 = PyWeakref_NewProxy(x, NULL)
9790 return r0
@@ -104,8 +97,7 @@ def f(x: object, cb: Callable[[object], Any]) -> object:
10497
10598[out]
10699def f(x, cb):
107- x, cb :: object
108- r0 :: object
100+ x, cb, r0 :: object
109101L0:
110102 r0 = PyWeakref_NewProxy(x, cb)
111103 return r0
0 commit comments