Somewhere in my code it says
publisher.publisherperson_set.remove(email__in=pp_remove_set)
Upon executing this, I got
AttributeError: 'RelatedManager' object has no attribute 'remove'
And indeed: I looked at dir(publisher.publisherperson_set) and it had plenty of operations (including add), but not remove.
Under which circumstances is this possible?