When using Django's get_or_create(), when created=True, is there any way to make it so that it creates an object without saving it to DB?
I want to take the newly created object, do some validation tests, and only save it to DB if it passes all tests.