Changes between Version 1 and Version 2 of Ticket #36923, comment 6
- Timestamp:
- Feb 20, 2026, 12:17:59 AM (12 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36923, comment 6
v1 v2 23 23 raise ValidationError(self.message, code=self.code, params={"value": value}) 24 24 }}} 25 26 27 Also, the [https://github.com/django/django/blob/4139cb8d35cfcb2beba6a8c629c20016ae84cf18/django/core/validators.py#L174-L188 IPv6 netloc part] verification under the same URLValidator should only be applied to heirarchical/web-style URIs, but not to opaque URIs. I guess, we could use the above obtained scheme to verify that part. 28 29