(self)
| 2154 | fr.evaluate() |
| 2155 | |
| 2156 | def test_fwdref_with_owner(self): |
| 2157 | self.assertEqual( |
| 2158 | ForwardRef("Counter[int]", owner=collections).evaluate(), |
| 2159 | collections.Counter[int], |
| 2160 | ) |
| 2161 | |
| 2162 | def test_name_lookup_without_eval(self): |
| 2163 | # test the codepath where we look up simple names directly in the |
nothing calls this directly
no test coverage detected