I donโt understand if this is normal, or is it time to create a new django ticket?
In [17]: User.objects.filter(pk=0)
Out[17]: []
In [18]: User.objects.filter(pk=0).exists()
Out[18]: True
Creature () should return False in this case, I think. This is version 11653 (development version)
I have a related problem with the unique inlineformset validation, and I found that the reason is queryset.exists () is not working correctly
source
share