Changes between Version 1 and Version 2 of Ticket #31960


Ignore:
Timestamp:
Aug 28, 2020, 11:08:30 AM (4 years ago)
Author:
James Pic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31960 – Description

    v1 v2  
    11Currently, 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.
    22
    3 But in reality, Django doesn't actually care : https://code.djangoproject.com/ticket/31959#ticket
     3But 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
    47
    58This makes the following documentation statement inaccurate:
Back to Top