(self, data, value, context)
| 67 | id = IntType() |
| 68 | |
| 69 | def validate_id(self, data, value, context): |
| 70 | if self.id: |
| 71 | raise ValidationError('Cannot change id') |
| 72 | |
| 73 | p1 = Player(trusted_data={'id': 4}) |
| 74 |
nothing calls this directly
no test coverage detected