(self)
| 144 | self.assertIsInstance(item, tuple) |
| 145 | |
| 146 | def test_array_hook_none(self): |
| 147 | # array_hook=None should behave like no hook |
| 148 | result = json.loads('[1, 2]', array_hook=None) |
| 149 | self.assertEqual(result, [1, 2]) |
| 150 | self.assertIsInstance(result, list) |
| 151 | |
| 152 | def test_trailing_comma_unexpected_data(self): |
| 153 | # Matches CPython's test_unexpected_data for trailing commas |