Re: Odd behavior on proxy models should be on documentation

2013-08-17 Thread Alex Ogier
This looks exactly as I expect. Proxy models are not distinct in the database from their parent models, they are just python wrappers around them. It is documented and expected that creating instances of the parent class creates instances of the proxy class. Since creating an instance of a

Odd behavior on proxy models should be on documentation

2013-08-17 Thread Jorge C . Leitão
Hi there. I was working with proxies models and I found an odd behavior on a QuerySet, and I ask here whether it should be documented. Consider the following code: from django.db import models #from model_utils.managers import InheritanceManager class Generic(models.Model): pass #