(self, obj, msg='')
| 147 | self.assertIsInstance(obj, int, msg) |
| 148 | |
| 149 | def assertIsString(self, obj, msg=''): |
| 150 | self.assertIsInstance(obj, str, msg) |
| 151 | |
| 152 | def assertIsBytes(self, obj, msg=''): |
| 153 | self.assertIsInstance(obj, bytes, msg) |
no outgoing calls