File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ class DomainNameValidator(RegexValidator):
3333 ul : str
3434 hostname_re : str
3535 domain_re : str
36+ tld_no_fqdn_re : str
3637 tld_re : str
3738 ascii_only_hostname_re : str
3839 ascii_only_domain_re : str
@@ -65,6 +66,9 @@ def validate_integer(value: float | str | None) -> None: ...
6566class EmailValidator (_Deconstructible ):
6667 message : _StrOrPromise
6768 code : str
69+ domain_re : str
70+ hostname_re : str
71+ tld_no_fqdn_re : str
6872 user_regex : Pattern [str ]
6973 domain_regex : Pattern [str ]
7074 literal_regex : Pattern [str ]
Original file line number Diff line number Diff line change @@ -146,10 +146,6 @@ django.core.serializers.json.Deserializer
146146django.core.serializers.jsonl.Deserializer
147147django.core.serializers.python.Deserializer
148148django.core.serializers.pyyaml.Deserializer
149- django.core.validators.DomainNameValidator.tld_no_fqdn_re
150- django.core.validators.EmailValidator.domain_re
151- django.core.validators.EmailValidator.hostname_re
152- django.core.validators.EmailValidator.tld_no_fqdn_re
153149django.db.backends.base.features.BaseDatabaseFeatures.rounds_to_even
154150django.db.backends.base.features.BaseDatabaseFeatures.supports_tuple_lookups
155151django.db.backends.base.schema.BaseDatabaseSchemaEditor.sql_pk_constraint
You can’t perform that action at this time.
0 commit comments