Changes between Version 1 and Version 2 of Ticket #36923, comment 6


Ignore:
Timestamp:
Feb 20, 2026, 12:17:59 AM (12 days ago)
Author:
Vishy Algo

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36923, comment 6

    v1 v2  
    2323              raise ValidationError(self.message, code=self.code, params={"value": value})
    2424}}}
     25
     26
     27Also, 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
Back to Top