(self)
| 1621 | go() |
| 1622 | |
| 1623 | def test_weak_sequence(self): |
| 1624 | class Foo: |
| 1625 | pass |
| 1626 | |
| 1627 | f = Foo() |
| 1628 | |
| 1629 | @assert_cycles() |
| 1630 | def go(): |
| 1631 | util.WeakSequence([f]) |
| 1632 | |
| 1633 | go() |
| 1634 | |
| 1635 | @testing.provide_metadata |
| 1636 | def test_optimized_get(self): |