Changes between Initial Version and Version 1 of Ticket #32874
- Timestamp:
- Jun 22, 2021, 1:16:03 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32874 – Description
initial v1 3 3 URLValidator is not validating such urls. 4 4 5 ``` 5 {{{ 6 6 >>> from django.core.validators import URLValidator 7 7 >>> value = '//example.com' … … 12 12 raise ValidationError(self.message, code=self.code, params={'value': value}) 13 13 django.core.exceptions.ValidationError: ['Enter a valid URL.'] 14 ``` 14 }}}