(self)
| 1217 | |
| 1218 | @cpython_only |
| 1219 | def test_interned_string_default(self): |
| 1220 | def f(a='str_value'): |
| 1221 | return a |
| 1222 | self.assertIsInterned(f()) |
| 1223 | |
| 1224 | @cpython_only |
| 1225 | @unittest.skipIf(Py_GIL_DISABLED, "free-threaded build interns all string constants") |
nothing calls this directly
no test coverage detected