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):
33
33
ul : str
34
34
hostname_re : str
35
35
domain_re : str
36
+ tld_no_fqdn_re : str
36
37
tld_re : str
37
38
ascii_only_hostname_re : str
38
39
ascii_only_domain_re : str
@@ -65,6 +66,9 @@ def validate_integer(value: float | str | None) -> None: ...
65
66
class EmailValidator (_Deconstructible ):
66
67
message : _StrOrPromise
67
68
code : str
69
+ domain_re : str
70
+ hostname_re : str
71
+ tld_no_fqdn_re : str
68
72
user_regex : Pattern [str ]
69
73
domain_regex : Pattern [str ]
70
74
literal_regex : Pattern [str ]
Original file line number Diff line number Diff line change @@ -146,10 +146,6 @@ django.core.serializers.json.Deserializer
146
146
django.core.serializers.jsonl.Deserializer
147
147
django.core.serializers.python.Deserializer
148
148
django.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
153
149
django.db.backends.base.features.BaseDatabaseFeatures.rounds_to_even
154
150
django.db.backends.base.features.BaseDatabaseFeatures.supports_tuple_lookups
155
151
django.db.backends.base.schema.BaseDatabaseSchemaEditor.sql_pk_constraint
You can’t perform that action at this time.
0 commit comments