(x)
| 245 | self.assertFalse(_testcapi.pyobject_is_unique_temporary(obj)) |
| 246 | |
| 247 | def func(x): |
| 248 | # This relies on the LOAD_FAST_BORROW optimization (gh-130704) |
| 249 | self.assertEqual(sys.getrefcount(x), 1) |
| 250 | self.assertFalse(_testcapi.pyobject_is_unique_temporary(x)) |
| 251 | |
| 252 | func(object()) |
| 253 |
no test coverage detected