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