(self)
| 77 | self.factory("") |
| 78 | |
| 79 | def test_floats_rejected(self): |
| 80 | with self.assertAddressError(re.escape(repr("1.0"))): |
| 81 | self.factory(1.0) |
| 82 | |
| 83 | def test_not_an_index_issue15559(self): |
| 84 | # Implementing __index__ makes for a very nasty interaction with the |
nothing calls this directly
no test coverage detected