Changes between Version 1 and Version 2 of Ticket #31960
- Timestamp:
- Aug 28, 2020, 11:08:30 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31960 – Description
v1 v2 1 1 Currently, Django makes it seem that using an EmailField / EmailValidator will protect projects from getting invalid emails in their database, for example: emails starting with a dot like ".foo@bar.com" will be invalid as expected. 2 2 3 But in reality, Django doesn't actually care : https://code.djangoproject.com/ticket/31959#ticket 3 But in reality, users must not count on Django for that: 4 5 - https://code.djangoproject.com/ticket/31959 6 - https://code.djangoproject.com/ticket/25452 4 7 5 8 This makes the following documentation statement inaccurate: